mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
11 lines
179 B
Nix
11 lines
179 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = ''
|
|
set fish_greeting # Disable greeting
|
|
alias cd z # Zoxide instead of cd
|
|
'';
|
|
};
|
|
}
|