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

21 lines
343 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
2023-11-05 11:40:44 +01:00
];
}