From 38a8997448314c13c94a6acaf83a9fa95ea24420 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Wed, 30 Jul 2025 08:07:31 -0700 Subject: [PATCH] [btrfs] Add btrfs-progs and compsize --- roles/btrfs/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/roles/btrfs/default.nix b/roles/btrfs/default.nix index 394592b..3110954 100644 --- a/roles/btrfs/default.nix +++ b/roles/btrfs/default.nix @@ -102,6 +102,11 @@ in }; config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ + btrfs-progs + compsize + ]; + # Generate fileSystems configuration from mountpoints fileSystems = mkMerge (flatten (mapAttrsToList (device: fsCfg: mapAttrsToList (mountpoint: mountCfg: @@ -165,4 +170,4 @@ in }; }) cfg.filesystems); }; -} \ No newline at end of file +}