Files
home-manager/tests/modules/programs/lazyworktree/no-package-empty-settings.nix
T
2026-02-28 20:01:47 -06:00

13 lines
240 B
Nix

{
programs.lazyworktree = {
enable = true;
package = null;
settings = { };
};
nmt.script = ''
assertPathNotExists home-path/bin/lazyworktree
assertPathNotExists home-files/.config/lazyworktree/config.yaml
'';
}