2021-07-08 00:31:12 +00:00
|
|
|
{ pkgs, lib, budUtils, ... }: {
|
|
|
|
bud.cmds = with pkgs; {
|
|
|
|
get = {
|
2022-01-19 00:13:15 +00:00
|
|
|
writer = budUtils.writeBashWithPaths [ nixFlakes git coreutils ];
|
2021-07-16 17:45:48 +00:00
|
|
|
synopsis = "get [DEST]";
|
2021-07-08 00:31:12 +00:00
|
|
|
help = "Copy the desired template to DEST";
|
|
|
|
script = ./get.bash;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|