diff options
Diffstat (limited to 'nixos/modules')
| -rw-r--r-- | nixos/modules/features/desktop-apps/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/features/dev-tools/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/system/users/default.nix | 13 |
3 files changed, 12 insertions, 5 deletions
diff --git a/nixos/modules/features/desktop-apps/default.nix b/nixos/modules/features/desktop-apps/default.nix index 527a350..385af11 100644 --- a/nixos/modules/features/desktop-apps/default.nix +++ b/nixos/modules/features/desktop-apps/default.nix @@ -19,5 +19,7 @@ obs-studio pkgs.qbittorrent pkgs.masterpdfeditor + mullvad-browser + librewolf ]; } diff --git a/nixos/modules/features/dev-tools/default.nix b/nixos/modules/features/dev-tools/default.nix index ad10afd..6b20cf7 100644 --- a/nixos/modules/features/dev-tools/default.nix +++ b/nixos/modules/features/dev-tools/default.nix @@ -11,7 +11,7 @@ gnumake nodejs pyright - python3 + (python3.withPackages (ps: with ps; [ pip ])) rust-analyzer rustc lua5_4 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"; |
