about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 16:24:50 +0100
committerene <ene@sils.li>2023-03-21 16:24:50 +0100
commitf44d4a8753c428e5da4cae7bef796cc59ba782d7 (patch)
tree8a97f1bb154b4e4f1fb08733fb1c072866ae94a2 /bootstrap
parentFix(lib): Unset the default path before extending it (diff)
downloadnixos-config-f44d4a8753c428e5da4cae7bef796cc59ba782d7.tar.gz
nixos-config-f44d4a8753c428e5da4cae7bef796cc59ba782d7.zip
Fix(bootstrap/install): Add btrfs-progs as dependency
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/install/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix
index ae9bfad5..642b9054 100644
--- a/bootstrap/install/default.nix
+++ b/bootstrap/install/default.nix
@@ -4,7 +4,7 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [jq dash curl gawk];
+  dependencies = with pkgs; [jq dash curl gawk btrfs-progs];
   name = "install";
   script = ./install.sh;
   lib = import ../../lib {inherit pkgs shell-library;};