From 7f1f7ca9e260c254245a689a71f9ca6af1420674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 13 Mar 2024 16:31:56 +0200 Subject: [PATCH] enable more filesystems --- hosts/op5p/configuration.nix | 2 +- hosts/vm/configuration.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/op5p/configuration.nix b/hosts/op5p/configuration.nix index 3b93a96..dba0c9d 100644 --- a/hosts/op5p/configuration.nix +++ b/hosts/op5p/configuration.nix @@ -20,7 +20,7 @@ pcscd.enable = true; }; - boot.supportedFilesystems = ["bcachefs"]; + boot.supportedFilesystems = ["btrfs" "bcachefs"]; fileSystems = { "/" = { diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 10270fe..da54857 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -21,6 +21,7 @@ }; boot.loader.systemd-boot.enable = true; + boot.supportedFilesystems = ["zfs" "btrfs" "bcachefs"]; isoImage = { isoName = "toolshed-${self.lastModifiedDate}.iso";