diff --git a/hosts/lars/default.nix b/hosts/lars/default.nix index ed31b66..4d9dc8f 100644 --- a/hosts/lars/default.nix +++ b/hosts/lars/default.nix @@ -29,7 +29,7 @@ cls = "clear"; }; - oh-my-zsh = { + ohmyzsh = { enable = true; theme = "fino-time"; }; diff --git a/modules/cli/zsh.nix b/modules/cli/zsh.nix index c2825c6..c93c550 100644 --- a/modules/cli/zsh.nix +++ b/modules/cli/zsh.nix @@ -26,7 +26,7 @@ in { plugins = mkOption { type = types.listOf(types.str); description = "oh-my-zsh plugins (like git)"; - default = [ git ]; + default = [ "git" ]; }; }; }; @@ -84,8 +84,8 @@ in { } ]; oh-my-zsh = mkIf cfg.ohmyzsh.enable { - programs.oh-my-zsh.enable = true; - theme = cfg.ohmyzsh.theme; + enable = true; + theme = cfg.ohmyzsh.theme; plugins = cfg.ohmyzsh.plugins; }; };