Files
dotfiles/system-modules/games.nix
Lennart J. Kurzweg (Nx2) 971cea5418 steam
2024-11-21 22:19:14 +01:00

16 lines
225 B
Nix

{ lib, host, ... }:
lib.mkIf (host == "NxNORTH" || host == "NxACE")
{
programs = {
steam = {
enable = true;
};
gamemode = {
enable = true;
};
gamescope = {
enable = true;
};
};
}