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