This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-11-14 01:21:34 +01:00
parent 55587f35f6
commit 77e9aa4ddd
3 changed files with 29 additions and 5 deletions

12
system-modules/games.nix Normal file
View File

@@ -0,0 +1,12 @@
{ lib, host, ... }:
lib.mkIf (host == "NxNORTH")
{
programs = {
gamemode = {
enable = true;
};
gamescope = {
enable = true;
};
};
}