diff options
author | ene <ene@sils.li> | 2023-02-21 12:27:53 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 12:27:53 +0100 |
commit | 78685e847a282f132057ebe0bac20ddba186d518 (patch) | |
tree | 2b392b6321918008dcdff8c4f8c7f53275026557 /bootstrap/setup/default.nix | |
parent | Fix(system): Fix typo in fs names (diff) | |
download | nixos-config-78685e847a282f132057ebe0bac20ddba186d518.tar.gz nixos-config-78685e847a282f132057ebe0bac20ddba186d518.zip |
Feat(bootstrap): Add a setup script
Diffstat (limited to '')
-rw-r--r-- | bootstrap/setup/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap/setup/default.nix b/bootstrap/setup/default.nix new file mode 100644 index 00000000..429fe5f4 --- /dev/null +++ b/bootstrap/setup/default.nix @@ -0,0 +1,12 @@ +# vim: ts=2 +{ + pkgs, + shell-library, + ... +}: let + dependencies = with pkgs; [dash]; + name = "setup"; + script = ./setup.sh; + lib = import ../../lib {inherit pkgs shell-library;}; +in + lib.makeShellScriptWithLibrary {inherit dependencies name script;} |