1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/services/easyeffects/service.nix
2025-10-26 15:43:53 -05:00

14 lines
280 B
Nix

{
services.easyeffects = {
enable = true;
};
test.stubs.easyeffects = { };
nmt.script = ''
serviceFile=home-files/.config/systemd/user/easyeffects.service
assertFileExists $serviceFile
assertFileRegex $serviceFile 'ExecStart=.*/bin/easyeffects'
'';
}