From d46a74e403c27ebf1d0e908715b2e9a0b50716ba Mon Sep 17 00:00:00 2001 From: vali Date: Fri, 12 Apr 2024 15:24:35 +0200 Subject: [PATCH] fixed my error on oh-my-zsh --- modules/cli/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cli/zsh.nix b/modules/cli/zsh.nix index 3b80ce9..c2825c6 100644 --- a/modules/cli/zsh.nix +++ b/modules/cli/zsh.nix @@ -83,8 +83,8 @@ in { }; } ]; - oh-my-zsh = mkIf cfg.ohmyzsh { - enable = true; + oh-my-zsh = mkIf cfg.ohmyzsh.enable { + programs.oh-my-zsh.enable = true; theme = cfg.ohmyzsh.theme; plugins = cfg.ohmyzsh.plugins; };