2.home-manager/tests/modules/programs/infat/no-settings.nix
2025-12-02 21:39:05 -06:00

13 lines
226 B
Nix

{
programs.infat.enable = true;
test.stubs.infat = { };
nmt.script =
let
expectedConfigPath = "home-files/.config/infat/config.toml";
in
''
assertPathNotExists "${expectedConfigPath}"
'';
}