summaryrefslogtreecommitdiff
path: root/nixos/modules/system/users/default.nix
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-02 22:05:46 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-02 22:05:46 +0700
commit4eba57f4e787bf97fe7dcb0e1702723aa08de01d (patch)
treefc0a648ee970fa3bbf8ad3db794788a48eb2c80d /nixos/modules/system/users/default.nix
parent7ed2cd02363a48dd9f6f9704efddfb15fe26944e (diff)
.
Diffstat (limited to 'nixos/modules/system/users/default.nix')
-rw-r--r--nixos/modules/system/users/default.nix13
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";