15 lines
433 B
Nix
15 lines
433 B
Nix
{ config, flake, ... }: {
|
|
config = {
|
|
services.syncthing.enable = true;
|
|
|
|
homeage.file."syncthing-key.pem" = {
|
|
source = "${flake}/secrets/syncthing-key.pem.age";
|
|
symlinks = [ "${config.xdg.configHome}/syncthing/key.pem" ];
|
|
};
|
|
|
|
homeage.file."syncthing-cert.pem" = {
|
|
source = "${flake}/secrets/syncthing-cert.pem.age";
|
|
symlinks = [ "${config.xdg.configHome}/syncthing/cert.pem" ];
|
|
};
|
|
};
|
|
}
|