diff options
Diffstat (limited to '')
| -rw-r--r-- | home-modules/apps/zsh.nix | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/home-modules/apps/zsh.nix b/home-modules/apps/zsh.nix index b979a83..9a7c84d 100644 --- a/home-modules/apps/zsh.nix +++ b/home-modules/apps/zsh.nix @@ -1,4 +1,10 @@ -{config ,pkgs, lib, ...}: { +{ + config, + pkgs, + lib, + ... +}: +{ options.homeapps.zsh = { enable = lib.mkEnableOption "Enable ZSH shell"; }; @@ -6,10 +12,10 @@ config = lib.mkIf config.homeapps.zsh.enable { programs.zsh = { - enable = true; + enable = true; enableCompletion = true; oh-my-zsh = { - enable = true; + enable = true; theme = "clean"; }; plugins = [ @@ -24,6 +30,6 @@ }; } ]; - }; + }; }; } |
