add supernote syncing
This commit is contained in:
parent
52c074f973
commit
72c6b7ce88
2 changed files with 28 additions and 10 deletions
|
|
@ -11,7 +11,12 @@ let
|
||||||
|
|
||||||
is-managed = builtins.elem this var.syncthing-managed-clients.managed_clients;
|
is-managed = builtins.elem this var.syncthing-managed-clients.managed_clients;
|
||||||
is-server = this == "roam";
|
is-server = this == "roam";
|
||||||
devices = lib.attrNames var.syncthing;
|
|
||||||
|
devices = [
|
||||||
|
"roam"
|
||||||
|
"fw"
|
||||||
|
];
|
||||||
|
|
||||||
devices-without-this = lib.remove this devices;
|
devices-without-this = lib.remove this devices;
|
||||||
type-encrypt = if is-server then "receiveencrypted" else "sendreceive";
|
type-encrypt = if is-server then "receiveencrypted" else "sendreceive";
|
||||||
devices-encrypt =
|
devices-encrypt =
|
||||||
|
|
@ -37,6 +42,16 @@ let
|
||||||
params.keep = "10";
|
params.keep = "10";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
supernote-note = rec {
|
||||||
|
id = "supernote-note";
|
||||||
|
path = if is-server then "/data/sync/${id}" else "/home/hd/Documents/Supernote/Notizen";
|
||||||
|
type = "sendreceive";
|
||||||
|
devices = devices-without-this ++ [ "supernote" ];
|
||||||
|
versioning = {
|
||||||
|
type = "simple";
|
||||||
|
params.keep = "10";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
@ -54,12 +69,15 @@ in
|
||||||
group = config.services.syncthing.group;
|
group = config.services.syncthing.group;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing = lib.mkIf cfg.enable {
|
services.syncthing = lib.mkIf cfg.enable (
|
||||||
inherit folders;
|
assert lib.assertMsg (builtins.elem this devices) "${this} is not in devices in mod/syncthing.nix";
|
||||||
settings = {
|
{
|
||||||
devices = var.syncthing;
|
inherit folders;
|
||||||
};
|
settings = {
|
||||||
key = lib.optionalAttrs is-managed config.age.secrets.syncthing-key.path;
|
devices = var.syncthing;
|
||||||
cert = lib.optionalAttrs is-managed "${../pki/syncthing + "/${this}.cert"}";
|
};
|
||||||
};
|
key = lib.optionalAttrs is-managed config.age.secrets.syncthing-key.path;
|
||||||
|
cert = lib.optionalAttrs is-managed "${../pki/syncthing + "/${this}.cert"}";
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
let
|
let
|
||||||
inherit (var.syncthing-managed-clients) managed_clients hashes;
|
inherit (var.syncthing-managed-clients) managed_clients hashes;
|
||||||
unmanaged = {
|
unmanaged = {
|
||||||
# "roam".id = "OIKOKOT-LY4JWPX-T7OXE4D-I4ZC3IR-ZLMKFCO-IXSVEYZ-Y3FZOUB-LIG2XAO";
|
"supernote".id = "3LHXAND-FXDIDWR-7BYAIX4-3GW2BWY-IHTX7HH-LTEDI5T-W7ETGVC-BUP2NAF";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
assert (
|
assert (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue