From dd6e1f9af2834abbe1136d75bb03db4ed3bc34b4 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Fri, 3 May 2024 21:23:21 -0400 Subject: [PATCH] Add btrfs support prior to filesystem conversion --- systems/orangepihole/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/orangepihole/configuration.nix b/systems/orangepihole/configuration.nix index 912e4c0..775ac7f 100644 --- a/systems/orangepihole/configuration.nix +++ b/systems/orangepihole/configuration.nix @@ -8,6 +8,7 @@ ../../modules/networkd-base.nix ]; + boot.initrd.supportedFilesystems = [ "btrfs" ]; boot.loader.grub.enable = false; boot.loader.generic-extlinux-compatible.enable = true; boot.loader.timeout = 1; @@ -68,6 +69,7 @@ environment.systemPackages = with pkgs; [ + btrfs-progs vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget ];