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