11 lines
264 B
Nix
11 lines
264 B
Nix
{ pkgs, lib, budUtils, ... }: {
|
|
bud.cmds = with pkgs; {
|
|
get = {
|
|
writer = budUtils.writeBashWithPaths [ nixFlakes git coreutils ];
|
|
synopsis = "get [DEST]";
|
|
help = "Copy the desired template to DEST";
|
|
script = ./get.bash;
|
|
};
|
|
};
|
|
}
|