Files
dotfiles/system-modules/games.nix
Lennart J. Kurzweg (Nx2) 77e9aa4ddd games
2024-11-14 01:21:34 +01:00

13 lines
164 B
Nix

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