diff options
-rw-r--r-- | hosts/arrakis/services.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/arrakis/services.nix b/hosts/arrakis/services.nix index c0a7830..e0c1111 100644 --- a/hosts/arrakis/services.nix +++ b/hosts/arrakis/services.nix @@ -91,11 +91,15 @@ modules = [ ({ config, pkgs, lib, modulesPath, ... }: { - imports = [ (modulesPath + "/installer/netboot/netboot-minimal.nix") ]; + imports = [ + (modulesPath + "/installer/netboot/netboot-minimal.nix") + ../common/optional/services/nolid.nix + ]; config = { environment.systemPackages = with pkgs; [ git + rsync ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; |