1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-12-01 05:03:34 +01:00
parent 0968b6f955
commit 0f33c80edd
15 changed files with 139 additions and 46 deletions

View file

@ -1,8 +1,11 @@
{
config,
lib,
pkgs,
...
}: {
}: let
inherit (config.users) mainUser;
in {
programs.gamemode = {
enable = true;
settings = {
@ -15,4 +18,6 @@
};
};
};
users.users.${mainUser}.extraGroups = ["gamemode"];
}