non-critical-infra: drop supportedFilesystems == zfs
It's disko's job to add filesystems, so no need to duplicate this After the change: nix-repl> nixosConfigurations."caliban.nixos.org".config.boot.supportedFilesystems { zfs = true; }
Jörg Thalheim committed
Aug 17, 2024 at 09:40 UTC
55b16f5bc6bd01e3375e3d8e2d617404953edc6a
2 files changed
-2
non-critical-infra/hosts/caliban.nixos.org/default.nix
-1
@@ -18,7 +18,6 @@
18
19
# Bootloader.
20
boot.loader.grub.enable = true;
21
- boot.supportedFilesystems = [ "zfs" ];
21
boot.loader.grub.mirroredBoots = [
22
{ path = "/boot-1"; devices = [ "/dev/disk/by-id/nvme-SAMSUNG_MZQL23T8HCLS-00A07_S64HNJ0T508051" ]; }
23
{ path = "/boot-2"; devices = [ "/dev/disk/by-id/nvme-SAMSUNG_MZQL23T8HCLS-00A07_S64HNJ0T508053" ]; }
non-critical-infra/hosts/umbriel.nixos.org/default.nix
-1
@@ -14,7 +14,6 @@
14
boot.loader.systemd-boot.enable = true;
15
boot.loader.timeout = lib.mkForce 5;
16
boot.loader.efi.efiSysMountPoint = "/efi";
17
- boot.supportedFilesystems = [ "zfs" ];
17
18
# workaround because the console defaults to serial
19
boot.kernelParams = [ "console=tty" ];