devices/vmd32387: move syncthing to a nixos container

This commit is contained in:
steveej 2019-02-08 23:52:22 +01:00
parent 7bad36ed75
commit 2ed3f2efe2
3 changed files with 41 additions and 5 deletions

View file

@ -7,11 +7,6 @@
{
home-manager.users.steveej = import ../../../home-manager/configuration/text-minimal.nix;
services.syncthing = {
enable = true;
openDefaultPorts = true;
};
services.hydra = {
enable = false;
hydraURL = "http://localhost:3000"; # externally visible URL

View file

@ -80,5 +80,10 @@ in {
hostAddress = "192.168.100.12";
localAddress = "192.168.100.13";
};
syncthing = import ../../containers/syncthing.nix {
hostAddress = "192.168.100.14";
localAddress = "192.168.100.15";
};
};
}