about summary refs log tree commit diff stats
path: root/bootstrap/activate/default.nix
blob: c60d8e730c85744513364550a476d2acd6539b4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# vim: ts=2
{
  pkgs,
  sysLib,
  ...
}: let
  dependencies = builtins.attrValues {inherit (pkgs) jq gawk curl coreutils libuuid nix git;};
  name = "activate";
  script = ./activate.sh;
in
  sysLib.makeShellScriptWithLibrary {inherit dependencies name script;}