summaryrefslogtreecommitdiff
path: root/users/seth/shell/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/shell/zsh.nix')
-rw-r--r--users/seth/shell/zsh.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/users/seth/shell/zsh.nix b/users/seth/shell/zsh.nix
index 4ce116a..0983f15 100644
--- a/users/seth/shell/zsh.nix
+++ b/users/seth/shell/zsh.nix
@@ -3,12 +3,16 @@
lib,
pkgs,
...
-}: let
+}:
+let
cfg = config.seth.shell.zsh;
-in {
+in
+{
options.seth.shell.zsh = {
enable = lib.mkEnableOption "Zsh configuration";
- withPlugins = lib.mkEnableOption "Zsh plugins" // {default = true;};
+ withPlugins = lib.mkEnableOption "Zsh plugins" // {
+ default = true;
+ };
};
config = lib.mkIf cfg.enable {