add trash cli

This commit is contained in:
Leonardo Eugênio 2022-08-24 19:50:56 -03:00
parent 14571ce366
commit 105254b37d

View file

@ -19,6 +19,9 @@ in {
rustup default stable &>/dev/null &
end
'';
shellAliases = {
rm = "trash";
};
shellAbbrs = {
v = "kak";
ns = "nix develop --command $SHELL";
@ -51,5 +54,8 @@ in {
".config/fish/conf.d/prompt.fish".source = ./fish_prompt.fish;
};
programs.command-not-found.enable = true;
home.packages = with pkgs; [
trash-cli
];
};
}