Add fish and rmtrash configurations

This commit is contained in:
panotaka
2023-11-27 10:18:31 -04:00
parent a27ab16007
commit 55d3074f0d
3 changed files with 28 additions and 1 deletions

10
home/shell/rmtrash.nix Normal file
View File

@@ -0,0 +1,10 @@
{
home.packages = with pkgs; [
rmtrash
];
home.shellAliases = {
rm = "rmtrash";
rmdir = "rmdirtrash";
};
}