mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
27 lines
749 B
Nix
27 lines
749 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
lib.mkMerge [
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
extraOptions = [ "-foo" ''-bar "baz"'' ];
|
||
|
};
|
||
|
|
||
|
test.stubs.syncthing = { };
|
||
|
}
|
||
|
(lib.mkIf pkgs.stdenv.isLinux {
|
||
|
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\"'"
|
||
|
'';
|
||
|
})
|
||
|
(lib.mkIf pkgs.stdenv.isDarwin {
|
||
|
nmt.script = ''
|
||
|
serviceFile=LaunchAgents/org.nix-community.home.syncthing.plist
|
||
|
assertFileExists "$serviceFile"
|
||
|
assertFileContent "$serviceFile" ${./expected-agent.plist}
|
||
|
'';
|
||
|
})
|
||
|
]
|