mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
283 B
Nix
11 lines
283 B
Nix
{
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/opencode/themes/my-theme.json
|
|
assertFileContent home-files/.config/opencode/themes/my-theme.json \
|
|
${./my-theme.json}
|
|
'';
|
|
programs.opencode = {
|
|
enable = true;
|
|
themes.my-theme = ./my-theme.json;
|
|
};
|
|
}
|