remove various references to ${username}

This commit is contained in:
Simon Gardling 2025-10-17 22:34:52 -04:00
parent 31b4d7e80d
commit dd18bd1e6d
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
8 changed files with 0 additions and 28 deletions

View File

@ -1,6 +1,5 @@
{
pkgs,
username,
lib,
...
}:

View File

@ -1,7 +1,6 @@
{
config,
service_configs,
username,
pkgs,
lib,
inputs,
@ -88,8 +87,4 @@ in
networking.firewall.allowedUDPPorts = [
service_configs.ports.https
];
users.users.${username}.extraGroups = [
config.services.caddy.group
];
}

View File

@ -3,7 +3,6 @@
lib,
config,
service_configs,
username,
...
}:
{
@ -60,8 +59,4 @@
};
services.openssh.settings.AllowUsers = [ config.services.gitea.user ];
users.users.${username}.extraGroups = [
config.services.gitea.group
];
}

View File

@ -2,7 +2,6 @@
service_configs,
pkgs,
config,
username,
lib,
...
}:
@ -41,8 +40,4 @@
"video"
"render"
];
users.users.${username}.extraGroups = [
config.services.immich.group
];
}

View File

@ -2,7 +2,6 @@
pkgs,
config,
service_configs,
username,
lib,
...
}:
@ -41,8 +40,4 @@
"render"
service_configs.media_group
];
users.users.${username}.extraGroups = [
config.services.jellyfin.group
];
}

View File

@ -2,7 +2,6 @@
pkgs,
service_configs,
lib,
username,
config,
...
}:

View File

@ -1,7 +1,6 @@
{
pkgs,
config,
username,
service_configs,
lib,
...
@ -22,8 +21,4 @@
# postgresql requires 0700
"Z ${config.services.postgresql.dataDir} 0700 postgresql postgresql"
];
users.users.${username}.extraGroups = [
"postgresql"
];
}

View File

@ -2,7 +2,6 @@
pkgs,
config,
service_configs,
username,
lib,
inputs,
...