add trash cli
This commit is contained in:
parent
14571ce366
commit
105254b37d
|
@ -19,6 +19,9 @@ in {
|
||||||
rustup default stable &>/dev/null &
|
rustup default stable &>/dev/null &
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
|
shellAliases = {
|
||||||
|
rm = "trash";
|
||||||
|
};
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
v = "kak";
|
v = "kak";
|
||||||
ns = "nix develop --command $SHELL";
|
ns = "nix develop --command $SHELL";
|
||||||
|
@ -51,5 +54,8 @@ in {
|
||||||
".config/fish/conf.d/prompt.fish".source = ./fish_prompt.fish;
|
".config/fish/conf.d/prompt.fish".source = ./fish_prompt.fish;
|
||||||
};
|
};
|
||||||
programs.command-not-found.enable = true;
|
programs.command-not-found.enable = true;
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
trash-cli
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue