This commit is contained in:
2024-09-07 23:20:24 -04:00
parent e0daf1276c
commit baae8c6292
5 changed files with 110 additions and 39 deletions

View File

@ -3,6 +3,7 @@
config,
lib,
pkgs,
userName,
...
}: {
# Bring in the hardware configuration
@ -114,4 +115,7 @@
remotePlay.openFirewall = true;
localNetworkGameTransfers = true;
};
# Add username to groups "wheel" and "video" - more may be added here later
users.users.${userName}.extraGroups = ["wheel" "video"];
}