blob: 19ee84dc082e99e76687a004a6ee8076034cb5d6 (
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) git neovim;};
name = "config_setup";
script = ./config_setup.sh;
lib = import ../../lib {inherit pkgs shell-library;};
in
lib.makeShellScriptWithLibrary {inherit dependencies name script;}
|