Files
home-manager/tests/modules/programs/ty/no-settings.nix
2026-04-13 22:02:40 -05:00

16 lines
226 B
Nix

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