summaryrefslogtreecommitdiff
path: root/home-modules/apps/zsh.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
commit892de67a9f64d0b0cdb023d830a019d8feec0a57 (patch)
tree0c5fd0c60ef93bb5cdc5f83c8cade0c5dddb4899 /home-modules/apps/zsh.nix
parentf5b37610b3835ea26757ef36d554ec598d53100c (diff)
Nix fmt
Diffstat (limited to '')
-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 @@
};
}
];
- };
+ };
};
}