1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/opencode/empty-themes.nix
Mirza Arnaut fc837be107 opencode: add themes option
Add themes option to configure custom themes through nix.
Define a submodule for the settings option, to give the `theme` setting
a description.
2025-10-18 09:21:38 -05:00

9 lines
153 B
Nix

{
programs.opencode = {
enable = true;
themes = { };
};
nmt.script = ''
assertPathNotExists home-files/.config/opencode/themes
'';
}