diff options
| -rw-r--r-- | hosts/glados/boot.nix | 5 | ||||
| -rw-r--r-- | hosts/glados/default.nix | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/glados/boot.nix b/hosts/glados/boot.nix index bba1bef..f936f1e 100644 --- a/hosts/glados/boot.nix +++ b/hosts/glados/boot.nix @@ -9,8 +9,7 @@ ]; boot = { - kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; - kernelParams = ["nohibernate"]; + kernelPackages = pkgs.linuxPackages_latest; bootspec.enable = true; loader.systemd-boot.enable = lib.mkForce false; @@ -19,6 +18,6 @@ enable = true; pkiBundle = "/etc/secureboot"; }; - supportedFilesystems = ["zfs" "ntfs"]; + supportedFilesystems = ["btrfs" "ntfs"]; }; } diff --git a/hosts/glados/default.nix b/hosts/glados/default.nix index 1bccb8c..c1f9887 100644 --- a/hosts/glados/default.nix +++ b/hosts/glados/default.nix @@ -2,6 +2,7 @@ _: { imports = [ ../common/hardware ../common/hardware/nvidia.nix + ../common/virtualisation.nix ./boot.nix ./hardware-configuration.nix ./network.nix |
