aboutsummaryrefslogtreecommitdiff
path: root/profiles/syncthing.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
commit543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch)
treeae8174b09797fd19e365f60bf25a9d20b222c855 /profiles/syncthing.nix
parentinstall kind / configure the dock (diff)
downloadinfra-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz
delete even more unused configurations
Diffstat (limited to 'profiles/syncthing.nix')
-rw-r--r--profiles/syncthing.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/profiles/syncthing.nix b/profiles/syncthing.nix
deleted file mode 100644
index 6dcb503..0000000
--- a/profiles/syncthing.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ config, pkgs, lib, ... }:
-let
- secrets = config.age.secrets;
-in
-{
- services.syncthing = {
- enable = true;
- openDefaultPorts = true;
- user = "fcuny";
- group = "users";
- dataDir = "/home/fcuny/.local/state/syncthing";
- cert = secrets."syncthing/cert".path;
- key = secrets."syncthing/key".path;
-
- folders.Documents = {
- path = "/home/fcuny/documents";
- devices = [ "aptos" "tahoe" ];
- };
-
- folders.PixelCamera = {
- path = "/home/fcuny/media/pixel/camera";
- id = "pixel_5_vwsr-photos";
- devices = lib.attrNames config.services.syncthing.devices;
- };
-
- devices = {
- aptos = {
- id =
- "JAN5UMH-2FAQQ7S-KLQ2YXM-C7KKK7U-HVHUK7I-CWOZQRM-VLQSO63-ZTP4WAN";
- introducer = false;
- };
- tahoe = {
- id =
- "4Y36C3Y-LUTO6LD-JXNV73B-FLXSTNP-5Q3CSPY-HESHTPH-EDYA54K-WEICJAJ";
- introducer = true;
- };
- pixel = {
- id =
- "J3JQFCJ-MY5RCF7-4NXMVU5-2JECKWO-UHFUS5T-KO64EMB-RNUV4F2-ZQ7Z6A6";
- introducer = false;
- };
- };
- };
-}