Fixed ohmyzsh config

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

View file

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

View file

@ -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;
};
};