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