diff --git a/home/shell/rip.nix b/home/shell/rip.nix index d3182a4..ba46e3a 100644 --- a/home/shell/rip.nix +++ b/home/shell/rip.nix @@ -2,24 +2,4 @@ home.packages = with pkgs; [ rm-improved ]; - - # TODO: Replace this with confirm once packaged - home.shellAliases = { - confirm = '' - read -p "Are you sure? [y/N] " -n 1 -r - echo - if [[ $REPLY =~ ^[Yy]$ ]] - then - $argv - fi - ''; - - rm = '' - confirm rm $argv - ''; - - rmdir = '' - confirm rmdir $argv - ''; - }; }