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";
|
cls = "clear";
|
||||||
|
|
||||||
};
|
};
|
||||||
oh-my-zsh = {
|
ohmyzsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "fino-time";
|
theme = "fino-time";
|
||||||
};
|
};
|
||||||
|
|
|
@ -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,8 +84,8 @@ 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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue