diff --git a/lxc-nix/parameters.nix b/lxc-nix/parameters.nix index 5011ac7..5c44ef2 100644 --- a/lxc-nix/parameters.nix +++ b/lxc-nix/parameters.nix @@ -3,7 +3,7 @@ containerName = "nixos-test"; # Name of the container, used for nginx virtualhost and for tailscale machine name timeZone = "Europe/Rome"; # TimeZone - downloadDir = "/mnt/data"; # Main download folder + downloadDir = "/data"; # Main download folder tailscaleAuthKey = "tskey-auth-kmgDY87CNTRL-urQA7eRn235t8Sjs6hW3259wJHE63Kvd"; tailscaleExitNodeIP = "100.81.1.32"; # vps diff --git a/lxc-nix/services/networking.nix b/lxc-nix/services/networking.nix index 1d11869..c8707f3 100644 --- a/lxc-nix/services/networking.nix +++ b/lxc-nix/services/networking.nix @@ -10,14 +10,14 @@ # We don't use DHCP, so we configure it statically. # interfaces.eth0.ipv4.addresses = [{ - # address = "10.42.135.101"; - # prefixLength = 24; + # address = "10.42.135.101"; + # prefixLength = 24; # }]; # # We can access the internet through this interface. # defaultGateway = { - # address = "10.42.135.1"; - # interface = "eth0"; + # address = "10.42.135.1"; + # interface = "eth0"; # }; # Since we don't use DHCP, we need to set our own nameservers. diff --git a/modules/services/download-pod-old.nix b/modules/services/download-pod-old.nix index 7ae2063..aba2ccb 100644 --- a/modules/services/download-pod-old.nix +++ b/modules/services/download-pod-old.nix @@ -3,7 +3,7 @@ let cfg = config.download-pod-old; in { - options.download-pod = { + options.download-pod-old = { enable = lib.mkEnableOption "Enable download services module"; proxy = {