1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-25 02:10:57 +01:00
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}"
'';
}