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