Polish fish experience and remove zsh again.

This commit is contained in:
2024-09-14 07:37:09 +01:00
parent 0021c0ad8b
commit cbce7c1e5e
3 changed files with 12 additions and 1 deletions

View File

@@ -1,7 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.fish.enable = true; programs.fish.enable = true;
programs.zsh.enable = true;
users.users.ppetru = { users.users.ppetru = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ extraGroups = [

View File

@@ -10,7 +10,9 @@
zsh zsh
] ]
++ (with pkgs.fishPlugins; [ ++ (with pkgs.fishPlugins; [
pure
# don't add failed commands to history # don't add failed commands to history
sponge sponge
transient-fish
]); ]);
} }

View File

@@ -2,6 +2,16 @@
{ {
fish = { fish = {
enable = true; enable = true;
shellInit = ''
set fish_greeting
set pure_color_mute green
set pure_check_for_new_release false
set pure_enable_nixdevshell true
set pure_show_prefix_root_prompt true
set sponge_regex_patterns 'password|passwd'
'';
}; };
git = { git = {