mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
- Add `empty-settings` test to ensure the config file is not generated when no settings are provided
9 lines
160 B
Nix
9 lines
160 B
Nix
{
|
|
programs.opencode = {
|
|
enable = true;
|
|
settings = { };
|
|
};
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/opencode/config.json
|
|
'';
|
|
}
|