formatting

This commit is contained in:
pazpi 2024-08-16 18:21:31 +02:00
parent 4e17989a59
commit 0a48b3d817
No known key found for this signature in database
GPG key ID: 0942571C4B9966BE
3 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@
containerName = "nixos-test"; # Name of the container, used for nginx virtualhost and for tailscale machine name containerName = "nixos-test"; # Name of the container, used for nginx virtualhost and for tailscale machine name
timeZone = "Europe/Rome"; # TimeZone timeZone = "Europe/Rome"; # TimeZone
downloadDir = "/mnt/data"; # Main download folder downloadDir = "/data"; # Main download folder
tailscaleAuthKey = "tskey-auth-kmgDY87CNTRL-urQA7eRn235t8Sjs6hW3259wJHE63Kvd"; tailscaleAuthKey = "tskey-auth-kmgDY87CNTRL-urQA7eRn235t8Sjs6hW3259wJHE63Kvd";
tailscaleExitNodeIP = "100.81.1.32"; # vps tailscaleExitNodeIP = "100.81.1.32"; # vps

View file

@ -10,14 +10,14 @@
# We don't use DHCP, so we configure it statically. # We don't use DHCP, so we configure it statically.
# interfaces.eth0.ipv4.addresses = [{ # interfaces.eth0.ipv4.addresses = [{
# address = "10.42.135.101"; # address = "10.42.135.101";
# prefixLength = 24; # prefixLength = 24;
# }]; # }];
# # We can access the internet through this interface. # # We can access the internet through this interface.
# defaultGateway = { # defaultGateway = {
# address = "10.42.135.1"; # address = "10.42.135.1";
# interface = "eth0"; # interface = "eth0";
# }; # };
# Since we don't use DHCP, we need to set our own nameservers. # Since we don't use DHCP, we need to set our own nameservers.

View file

@ -3,7 +3,7 @@ let
cfg = config.download-pod-old; cfg = config.download-pod-old;
in in
{ {
options.download-pod = { options.download-pod-old = {
enable = lib.mkEnableOption "Enable download services module"; enable = lib.mkEnableOption "Enable download services module";
proxy = { proxy = {