9 lines
228 B
Nix
9 lines
228 B
Nix
|
{config, ...}: {
|
||
|
services.syncthing.enable = true;
|
||
|
|
||
|
sops.secrets = {
|
||
|
"syncthing/key".path = "${config.xdg.configHome}/syncthing/key.pem";
|
||
|
"syncthing/cert".path = "${config.xdg.configHome}/syncthing/cert.pem";
|
||
|
};
|
||
|
}
|