Fixed ohmyzsh config

This commit is contained in:
LarsZauberer 2024-04-12 15:57:39 +02:00
commit 6c9c65dde9
2 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@
cls = "clear"; cls = "clear";
}; };
oh-my-zsh = { ohmyzsh = {
enable = true; enable = true;
theme = "fino-time"; theme = "fino-time";
}; };

View file

@ -26,7 +26,7 @@ in {
plugins = mkOption { plugins = mkOption {
type = types.listOf(types.str); type = types.listOf(types.str);
description = "oh-my-zsh plugins (like git)"; description = "oh-my-zsh plugins (like git)";
default = [ git ]; default = [ "git" ];
}; };
}; };
}; };
@ -84,7 +84,7 @@ in {
} }
]; ];
oh-my-zsh = mkIf cfg.ohmyzsh.enable { oh-my-zsh = mkIf cfg.ohmyzsh.enable {
programs.oh-my-zsh.enable = true; enable = true;
theme = cfg.ohmyzsh.theme; theme = cfg.ohmyzsh.theme;
plugins = cfg.ohmyzsh.plugins; plugins = cfg.ohmyzsh.plugins;
}; };