From 794bbe2bc753e4f1234d1a8490cd8e3127eedc69 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 15 Nov 2021 10:03:12 -0500 Subject: [PATCH] add zfs to supported boot --- nixos/hardware-configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index 5c60f08..09d491e 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -12,6 +12,7 @@ boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; + boot.supportedFilesystems = ["zfs"]; boot.initrd.luks.devices."crypt" = { device = "/dev/disk/by-partlabel/crypt";