diff options
Diffstat (limited to 'nixos/modules/system')
| -rw-r--r-- | nixos/modules/system/users/default.nix | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/nixos/modules/system/users/default.nix b/nixos/modules/system/users/default.nix index 19c2b56..f43149d 100644 --- a/nixos/modules/system/users/default.nix +++ b/nixos/modules/system/users/default.nix @@ -4,7 +4,7 @@ users.users."seraphim" = { isNormalUser = true; description = "seraphim"; - shell = pkgs.fish; + shell = pkgs.zsh; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; []; }; @@ -20,11 +20,16 @@ ]; }; - programs.fish = { + programs.zsh = { enable = true; + enableCompletion = true; + autosuggestions = { + enable = true; + highlightStyle = "fg=#6c7086"; + }; interactiveShellInit = '' - set -g fish_greeting "" - fzf --fish | source + source ${pkgs.fzf}/share/fzf/key-bindings.zsh + source ${pkgs.fzf}/share/fzf/completion.zsh ''; shellAliases = { ls = "eza -al --icons=auto"; |
