mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
17 lines
421 B
Nix
17 lines
421 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
extraOptions = [ "-foo" ''-bar "baz"'' ];
|
||
|
};
|
||
|
|
||
|
test.stubs.syncthing = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/systemd/user/syncthing.service
|
||
|
assertFileContains home-files/.config/systemd/user/syncthing.service \
|
||
|
"ExecStart=@syncthing@/bin/syncthing -no-browser -no-restart -logflags=0 '-foo' '-bar \"baz\"'"
|
||
|
'';
|
||
|
}
|