1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-04 08:01:02 +01:00
home-manager/tests/modules/programs/hwatch/empty-config.nix
2025-05-30 10:16:26 -05:00

15 lines
221 B
Nix

{
config,
...
}:
{
programs.hwatch = {
enable = true;
package = config.lib.test.mkStubPackage { };
};
nmt.script = ''
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh "HWATCH"
'';
}