27 lines
493 B
Nix
27 lines
493 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
lsd
|
|
fzf
|
|
fishPlugins.done
|
|
fishPlugins.fzf-fish
|
|
fishPlugins.hydro
|
|
];
|
|
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = ''
|
|
set fish_greeting
|
|
function fish_command_not_found
|
|
echo "Command not found"
|
|
end
|
|
'';
|
|
shellAliases = {
|
|
ls = "lsd --icon=never";
|
|
l = "ls -l";
|
|
ll = "ls -la";
|
|
vim = "nvim";
|
|
grep = "grep --color=auto";
|
|
};
|
|
};
|
|
}
|