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