From 771039f64d44a60f9691582fe559e26b431bbbe8 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 13 Dec 2025 15:19:21 -0800 Subject: remove abstractions for managing users --- machines/nixos/x86_64-linux/argonath.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'machines/nixos/x86_64-linux/argonath.nix') 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 + ]; }; } -- cgit v1.2.3