mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-04 08:01:02 +01:00
15 lines
221 B
Nix
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"
|
|
'';
|
|
}
|