{
services.syncthing = {
enable = true;
- folders.forDeps.path = "/nope";
+ settings.folders.forDeps.path = "/nope";
};
}
];
pkgs.writeText "configuration-with-folder.nix" ''
{ config, ... }: {
imports = [ ${configurationWithDeviceIDs} ];
- services.syncthing.folders.foo = {
+ services.syncthing.settings.folders.foo = {
devices = [ "a" "b" ];
path = "''${config.services.syncthing.dataDir}/foo";
};
def verifyDeviceIDSet(machine, expectedDevice):
machine.wait_until_succeeds(
- '(( "$(nix --experimental-features nix-command eval --impure --raw --expr "(import <nixos/nixos> {}).config.services.syncthing.declarative.devices.%s.id" | wc -c)" == 63 ))'
+ '(( "$(nix --experimental-features nix-command eval --impure --raw --expr "(import <nixos/nixos> {}).config.services.syncthing.settings.devices.%s.id" | wc -c)" == 63 ))'
% expectedDevice
)