nixos-config/modules/home/gaming/default.nix

26 lines
403 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ pkgs, config, inputs, ... }:
{
2023-11-05 11:40:44 +01:00
home.packages = with pkgs;[
gamemode
gamescope
winetricks
inputs.nix-gaming.packages.${pkgs.system}.proton-ge
inputs.nix-gaming.packages.${pkgs.system}.wine-ge
# games
2023-12-14 15:16:39 +01:00
_2048-in-terminal
2023-12-14 15:41:36 +01:00
vitetris
2024-01-02 17:54:42 +01:00
nethack
2023-12-14 15:41:36 +01:00
celeste-classic
celeste-classic-pm
2024-01-02 14:39:10 +01:00
gzdoom
2024-02-07 17:02:13 +01:00
crispy-doom
2024-01-02 21:18:50 +01:00
# Emulation
2024-01-03 16:51:30 +01:00
# cemu
2024-01-03 15:46:06 +01:00
dolphin-emu
2023-11-05 11:40:44 +01:00
];
}