about summary refs log tree commit diff stats
path: root/bootstrap/activate/default.nix
blob: abada12c83e65e482533a63a36e78b8b308ee5c2 (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";
  src = ./activate.sh;
in
  sysLib.writeShellScriptWithLibrary {inherit dependencies name src;}