mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Add themes option to configure custom themes through nix. Define a submodule for the settings option, to give the `theme` setting a description.
9 lines
153 B
Nix
9 lines
153 B
Nix
{
|
|
programs.opencode = {
|
|
enable = true;
|
|
themes = { };
|
|
};
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/opencode/themes
|
|
'';
|
|
}
|