1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/tests/modules/services/easyeffects/service.nix
hauskens 6b8cea6473 easyeffects: add option to import presets
added options to import presets
added tests
added hausken as maintainer
2025-03-19 14:45:27 -05:00

14 lines
284 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'
'';
}