mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
17 lines
314 B
Nix
17 lines
314 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.comodoro = {
|
||
|
enable = true;
|
||
|
preset = "preset";
|
||
|
protocols = [ "tcp" ];
|
||
|
};
|
||
|
|
||
|
test.stubs.comodoro = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/comodoro.service)
|
||
|
assertFileContent "$serviceFile" ${./expected.service}
|
||
|
'';
|
||
|
}
|