diff options
Diffstat (limited to 'nixos/machine')
-rw-r--r-- | nixos/machine/lipwig.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/nixos/machine/lipwig.nix b/nixos/machine/lipwig.nix index 8a7e9a6..ef90385 100644 --- a/nixos/machine/lipwig.nix +++ b/nixos/machine/lipwig.nix @@ -5,7 +5,18 @@ with lib; { config = { - cynerd.openvpn.personal = true; + cynerd = { + syncthing = { + #enable = true; + baseDir = "/nas"; + }; + openvpn.personal = true; + }; + + fileSystems."/nas" = { + device = "172.16.128.63:/nas/2682"; + fsType = "nfs"; + }; # Git ###################################################################### services.gitolite = { |