Files
dotfiles/system-modules/games.nix
Lennart J. Kurzweg (Nx2) 2b51508030 nxace no games
2025-03-31 01:51:15 +02:00

17 lines
256 B
Nix

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