From f2fc3959b165443dea6b295652fcc8ba24f85cc2 Mon Sep 17 00:00:00 2001 From: reidlab Date: Mon, 8 Jun 2026 15:57:24 -0700 Subject: [PATCH 1/2] epic typo fail --- modules/software/tools/wine.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/software/tools/wine.nix b/modules/software/tools/wine.nix index bab32f9..083b693 100644 --- a/modules/software/tools/wine.nix +++ b/modules/software/tools/wine.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, pkgs, ... }: with lib; let From 744c2c6834f158215c8c8e9764e9a6d44c55978c Mon Sep 17 00:00:00 2001 From: reidlab Date: Mon, 8 Jun 2026 15:57:38 -0700 Subject: [PATCH 2/2] make syncthing declarative --- modules/software/system/syncthing.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/modules/software/system/syncthing.nix b/modules/software/system/syncthing.nix index 86afb20..bfbc26c 100644 --- a/modules/software/system/syncthing.nix +++ b/modules/software/system/syncthing.nix @@ -17,7 +17,20 @@ in { command = "syncthingtray --wait"; }; - # TODO: add folders here + settings = { + devices = { + "flubber-machine".id = "SV57W5W-VVVCHWP-GDXFBNV-KR6JD2Y-VZD2HRZ-PYNCWIW-PJPPARY-WBWOTQX"; + "goopnet-interface".id = "XYWF35P-63PTNW2-EQ5NBZQ-UTWUI3Y-AL7LQML-2LOGGKK-2CDF2ZY-HFTZ3QW"; + "reid's phone".id = "K5BTLBX-CXPTGML-ZXO4RBJ-AULCVKU-BZ6IXLO-DLGB4CK-AVDOFNA-3LB42AC"; + }; + + folders = { + "default sync folder" = { + id = "default"; + path = "~/sync"; + }; + }; + }; }; }; }