about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-21 17:43:22 +0100
committerene <ene@sils.li>2023-03-21 17:43:22 +0100
commit2a628135bdfe5246fc3aaa6b4fc6a627d7983815 (patch)
tree34d163addda423bb2f785a6999e3352fb49e6268 /bootstrap
parentFix(bootstrap/setup): Add 'unshare' dependency (diff)
downloadnixos-config-2a628135bdfe5246fc3aaa6b4fc6a627d7983815.tar.gz
nixos-config-2a628135bdfe5246fc3aaa6b4fc6a627d7983815.zip
Fix(bootstrap/config_setup): Add dependencies
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/config_setup/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/config_setup/default.nix b/bootstrap/config_setup/default.nix
index 7f4b6f2a..19ee84dc 100644
--- a/bootstrap/config_setup/default.nix
+++ b/bootstrap/config_setup/default.nix
@@ -4,8 +4,8 @@
   shell-library,
   ...
 }: let
-  dependencies = with pkgs; [dash git];
-  name = "setup";
+  dependencies = builtins.attrValues {inherit (pkgs) git neovim;};
+  name = "config_setup";
   script = ./config_setup.sh;
   lib = import ../../lib {inherit pkgs shell-library;};
 in