pub-solar-os/bud/default.nix

11 lines
264 B
Nix
Raw Normal View History

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