Files
nixos-config/modules/home/scripts/commands/mcd.nix

12 lines
130 B
Nix

{
self,
pkgs,
}:
pkgs.writeShellScriptBin "mcd" ''
#!/run/current-system/sw/bin/bash
mkdir -p "$1"
cd "$1" || exit
''