2.home-manager/tests/modules/programs/lazyworktree/no-package-empty-settings.nix
Austin Horstman 6656349da8 tests/lazyworktree: add integration asserts
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-02-28 20:01:47 -06:00

12 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
'';
}