diff options
Diffstat (limited to 'machines/nixos/x86_64-linux/bree.nix')
| -rw-r--r-- | machines/nixos/x86_64-linux/bree.nix | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/machines/nixos/x86_64-linux/bree.nix b/machines/nixos/x86_64-linux/bree.nix index f91bf4f..9c9177d 100644 --- a/machines/nixos/x86_64-linux/bree.nix +++ b/machines/nixos/x86_64-linux/bree.nix @@ -1,9 +1,4 @@ -{ - lib, - adminUser, - config, - ... -}: +{ lib, config, ... }: { imports = [ ../../../profiles/cgroups.nix @@ -12,6 +7,7 @@ ../../../profiles/hardware/synology-vm.nix ../../../profiles/home-manager.nix ../../../profiles/server.nix + ../../../profiles/users/fcuny.nix ../../../profiles/wireguard.nix ]; @@ -19,14 +15,6 @@ networking.useDHCP = lib.mkDefault true; systemd.network.wait-online.anyInterface = lib.mkDefault config.networking.useDHCP; - home-manager = { - users.${adminUser.name} = { - imports = [ - ../../../home/profiles/minimal.nix - ]; - }; - }; - age.secrets.disk-unlock-key.file = ../../../secrets/bree/disk-unlock-key.age; age.secrets.disk-passphrase.file = ../../../secrets/bree/disk-passphrase.age; @@ -40,4 +28,10 @@ }; system.stateVersion = "23.11"; # Did you read the comment? + + home-manager.users.fcuny = { + imports = [ + ../../../home/profiles/minimal.nix + ]; + }; } |
