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