.dotfiles/pkgs/bak/default.nix

8 lines
107 B
Nix

{ writeShellApplication }:
writeShellApplication {
name = "bak";
text = ''
cp "$1"{,.bak}
'';
}