Files
nixos-conf/home-manager/packages/fish/fish.nix
2025-08-27 10:47:56 -06:00

25 lines
364 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
oh-my-fish
];
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting ""
'';
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"nc" = "~/nixos-servers/conf-editor.sh";
"ls" = "eza";
};
};
}