Fixed ohmyzsh config
This commit is contained in:
parent
7b158fd5e8
commit
d8543adc9c
2 changed files with 4 additions and 4 deletions
|
@ -29,7 +29,7 @@
|
|||
cls = "clear";
|
||||
|
||||
};
|
||||
oh-my-zsh = {
|
||||
ohmyzsh = {
|
||||
enable = true;
|
||||
theme = "fino-time";
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue