aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/install
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bootstrap/install/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix
index 71548e90..054c28ec 100644
--- a/bootstrap/install/default.nix
+++ b/bootstrap/install/default.nix
@@ -1,12 +1,11 @@
# vim: ts=2
{
pkgs,
- shell-library,
+ sysLib,
...
}: let
dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;};
name = "install";
script = ./install.sh;
- lib = import ../../lib {inherit pkgs shell-library;};
in
- lib.makeShellScriptWithLibrary {inherit dependencies name script;}
+ sysLib.makeShellScriptWithLibrary {inherit dependencies name script;}