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

18 lines
319 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
celeste-classic
celeste-classic-pm
2023-11-05 11:40:44 +01:00
];
}