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