diff --git a/nix/machines/devServer/hardware-configuration.nix b/nix/machines/devServer/hardware-configuration.nix index 2ca856d6..b939ad7d 100644 --- a/nix/machines/devServer/hardware-configuration.nix +++ b/nix/machines/devServer/hardware-configuration.nix @@ -22,6 +22,8 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; + boot.zfs.extraPools = [ "zspace" ]; + fileSystems."/" = { device = "zroot/root"; fsType = "zfs"; @@ -37,7 +39,7 @@ options = [ "nofail" ]; }; fileSystems."/nix" = { - device = "zroot/nix"; + device = "zspace/nix"; fsType = "zfs"; };