diff options
author | ene <ene@sils.li> | 2023-03-21 16:24:50 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 16:24:50 +0100 |
commit | f44d4a8753c428e5da4cae7bef796cc59ba782d7 (patch) | |
tree | 8a97f1bb154b4e4f1fb08733fb1c072866ae94a2 /bootstrap | |
parent | Fix(lib): Unset the default path before extending it (diff) | |
download | nixos-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.nix | 2 |
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;}; |