Files
dotfiles/system-modules/games.nix
2025-05-31 13:48:40 +02:00

16 lines
244 B
Nix

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