diff --git a/nixos/hosts/nixos-framework/default.nix b/nixos/hosts/nixos-framework/default.nix index 6aca35e2..0e7dce0b 100644 --- a/nixos/hosts/nixos-framework/default.nix +++ b/nixos/hosts/nixos-framework/default.nix @@ -3,6 +3,7 @@ inputs.nixos-hardware.nixosModules.framework-13-7040-amd (modulesPath + "/installer/scan/not-detected.nix") ./disks.nix + ./syncthing.nix ../../common/services/tailscale-autoconnect.nix ../../common/modules/secureboot.nix # ../../common/modules/boot.nix diff --git a/nixos/hosts/nixos-framework/syncthing.nix b/nixos/hosts/nixos-framework/syncthing.nix index c843461a..f3c16dda 100644 --- a/nixos/hosts/nixos-framework/syncthing.nix +++ b/nixos/hosts/nixos-framework/syncthing.nix @@ -1,5 +1,4 @@ { pkgs, config, hostname, username, ... }: { - imports = [ ../../common/services/syncthing.nix ]; services.syncthing = { enable = true; username = "${username}"; @@ -9,8 +8,7 @@ enable = true; id = "ergcw-ay6yg"; devices = [ "framework-server" "win10-desktop" ]; - path = /home/${username}/ - + path = "/home/${username}/Games/battlenet/drive_c/Program Files (x86)/World of Warcraft/"; }; }; };