From 7ee0a84c9fe74d78b681071d07aa8f5e636e3915 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 10 Dec 2021 00:19:44 +0100 Subject: [PATCH] dacbert, pulsebert, radiobert: don't try to build ZFS for latest kernel on RPis --- hosts/dacbert/default.nix | 2 ++ hosts/pulsebert/default.nix | 2 ++ hosts/radiobert/base.nix | 2 ++ 3 files changed, 6 insertions(+) diff --git a/hosts/dacbert/default.nix b/hosts/dacbert/default.nix index c50bcfdf..8c04c72f 100644 --- a/hosts/dacbert/default.nix +++ b/hosts/dacbert/default.nix @@ -49,6 +49,8 @@ FB_SIMPLE m ''; }]; + # No ZFS on latest kernel: + supportedFilesystems = lib.mkForce [ "vfat" "ext4" ]; kernelParams = lib.mkForce [ "snd_bcm2835.enable_headphones=1" # don't let sd-image-aarch64.nix setup serial console as it breaks bluetooth. diff --git a/hosts/pulsebert/default.nix b/hosts/pulsebert/default.nix index 4b7e3d4b..7f37111a 100644 --- a/hosts/pulsebert/default.nix +++ b/hosts/pulsebert/default.nix @@ -27,6 +27,8 @@ in FB_SIMPLE m ''; }]; + # No ZFS on latest kernel: + supportedFilesystems = lib.mkForce [ "vfat" "ext4" ]; tmpOnTmpfs = true; }; diff --git a/hosts/radiobert/base.nix b/hosts/radiobert/base.nix index 9286d97c..79bfc06f 100644 --- a/hosts/radiobert/base.nix +++ b/hosts/radiobert/base.nix @@ -46,6 +46,8 @@ FB_SIMPLE m ''; }]; + # No ZFS on latest kernel: + supportedFilesystems = lib.mkForce [ "vfat" "ext4" ]; tmpOnTmpfs = true; };