aboutsummaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--machines/rivendell.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/machines/rivendell.nix b/machines/rivendell.nix
index f3cadc6..ef458c5 100644
--- a/machines/rivendell.nix
+++ b/machines/rivendell.nix
@@ -20,16 +20,16 @@
../profiles/restic-backup.nix
../profiles/server.nix
../profiles/storage-media.nix
- ../profiles/users/builder.nix
../profiles/users/admin-user.nix
+ ../profiles/users/builder.nix
../profiles/users/home-manager.nix
../profiles/wireguard.nix
+ ../profiles/workstation.nix
];
boot.kernelModules = [ "sg" ];
networking.hostName = "rivendell";
- networking.networkmanager.enable = true;
networking.useDHCP = lib.mkDefault true;
systemd.network.wait-online.anyInterface = lib.mkDefault config.networking.useDHCP;
@@ -93,6 +93,9 @@
home-manager.users.${adminUser.name} = {
home.homeDirectory = "/home/${adminUser.name}";
- imports = [ ../home/profiles/minimal.nix ];
+ imports = [
+ ../home/profiles/minimal.nix
+ ../home/profiles/workstation.nix
+ ];
};
}