diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
| commit | 771039f64d44a60f9691582fe559e26b431bbbe8 (patch) | |
| tree | 1f980dd57b0f3256825f04f101c81ae458a4b424 /machines/nixos/x86_64-linux/argonath.nix | |
| parent | update builders configuration (diff) | |
| download | infra-771039f64d44a60f9691582fe559e26b431bbbe8.tar.gz | |
remove abstractions for managing users
Diffstat (limited to 'machines/nixos/x86_64-linux/argonath.nix')
| -rw-r--r-- | machines/nixos/x86_64-linux/argonath.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/machines/nixos/x86_64-linux/argonath.nix b/machines/nixos/x86_64-linux/argonath.nix index 4b72ca9..3dda772 100644 --- a/machines/nixos/x86_64-linux/argonath.nix +++ b/machines/nixos/x86_64-linux/argonath.nix @@ -1,4 +1,4 @@ -{ adminUser, ... }: +{ ... }: { imports = [ ../../../profiles/acme.nix @@ -10,17 +10,16 @@ ../../../profiles/reverse-proxy.nix ../../../profiles/server.nix ../../../profiles/wireguard.nix + ../../../profiles/users/fcuny.nix ]; networking.hostName = "argonath"; system.stateVersion = "25.05"; # Did you read the comment? - home-manager = { - users.${adminUser.name} = { - imports = [ - ../../../home/profiles/minimal.nix - ]; - }; + home-manager.users.fcuny = { + imports = [ + ../../../home/profiles/minimal.nix + ]; }; } |
