diff options
Diffstat (limited to 'modules/zsh.nix')
| -rw-r--r-- | modules/zsh.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/zsh.nix b/modules/zsh.nix deleted file mode 100644 index 5085263..0000000 --- a/modules/zsh.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ config, lib, pkgs, ... }: -let - cfg = config.modules.zsh; -in -{ - options.modules.zsh = { - enable = lib.mkEnableOption "zsh"; - }; - - config = { - home.packages = with pkgs; [ - zsh - oh-my-zsh - zsh-autosuggestions - ]; - - programs.zsh = lib.mkIf cfg.enable { - enable = true; - enableCompletion = true; - autosuggestion.enable = true; - oh-my-zsh = { - enable = true; - theme = "lambda"; - }; - }; - }; -} |