summaryrefslogtreecommitdiff
path: root/home-modules/apps/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-modules/apps/zsh.nix')
-rw-r--r--home-modules/apps/zsh.nix14
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 @@
};
}
];
- };
+ };
};
}