diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-30 19:02:53 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-30 19:02:53 -0800 |
| commit | dacf64ca7fd6d6d2cf927c709a74cb7adc8e6236 (patch) | |
| tree | b57889c0d611f11bdecba29c7a777c6100ba92df /machines/bree.nix | |
| parent | include relevant programs in work profile (diff) | |
| download | infra-dacf64ca7fd6d6d2cf927c709a74cb7adc8e6236.tar.gz | |
add back some abstractions related to user management
Diffstat (limited to '')
| -rw-r--r-- | machines/bree.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/machines/bree.nix b/machines/bree.nix index d779ce3..a633997 100644 --- a/machines/bree.nix +++ b/machines/bree.nix @@ -1,4 +1,9 @@ -{ lib, config, ... }: +{ + adminUser, + lib, + config, + ... +}: { imports = [ ../profiles/cgroups.nix @@ -8,7 +13,8 @@ ../profiles/hardware/synology-vm.nix ../profiles/home-manager.nix ../profiles/server.nix - ../profiles/users/fcuny.nix + ../profiles/users/admin-user.nix + ../profiles/users/home-manager.nix ../profiles/wireguard.nix ]; @@ -30,7 +36,7 @@ system.stateVersion = "23.11"; # Did you read the comment? - home-manager.users.fcuny = { + home-manager.users.${adminUser.name} = { imports = [ ../home/profiles/minimal.nix ]; |
