about summary refs log tree commit diff stats
path: root/bootstrap/config_setup/default.nix
blob: 7f4b6f2aadf626e3069f6ed9e12838dae4a66e4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# vim: ts=2
{
  pkgs,
  shell-library,
  ...
}: let
  dependencies = with pkgs; [dash git];
  name = "setup";
  script = ./config_setup.sh;
  lib = import ../../lib {inherit pkgs shell-library;};
in
  lib.makeShellScriptWithLibrary {inherit dependencies name script;}