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, pkgs,
username,
lib, lib,
... ...
}: }:

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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