From 4eba57f4e787bf97fe7dcb0e1702723aa08de01d Mon Sep 17 00:00:00 2001 From: seraphim <18ycm9tx@anonaddy.me> Date: Sun, 2 Aug 2026 22:05:46 +0700 Subject: . --- nixos/modules/system/users/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'nixos/modules/system/users/default.nix') 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"; -- cgit v1.2.3