diff options
Diffstat (limited to '')
| -rw-r--r-- | machines/nixos/x86_64-linux/rivendell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/machines/nixos/x86_64-linux/rivendell.nix b/machines/nixos/x86_64-linux/rivendell.nix index f158113..969133c 100644 --- a/machines/nixos/x86_64-linux/rivendell.nix +++ b/machines/nixos/x86_64-linux/rivendell.nix @@ -3,6 +3,7 @@ config, modulesPath, inputs, + adminUser, ... }: { @@ -96,5 +97,13 @@ my.modules.hardware.baremetal.enable = true; + home-manager = { + users.${adminUser.name} = { + imports = [ + ../../../home/profiles/minimal.nix + ]; + }; + }; + system.stateVersion = "23.11"; # Did you read the comment? } |
