2.home-manager/tests/modules/programs/ty/no-settings.nix
2025-12-07 23:30:36 -06:00

17 lines
242 B
Nix

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