Files
dotfiles/system-modules/games.nix
Lennart J. Kurzweg (Nx2) f4f80ffbde games on Ace - mindustry
2025-05-31 13:42:27 +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;
};
};
}