This commit is contained in:
mjallen18
2024-10-01 10:23:06 -05:00
parent bcbcdfb5c9
commit 550ad3757a
4 changed files with 19 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
let
enableDisplayManager = false;
in
@@ -9,7 +9,7 @@ in
minecraft-server = {
enable = true;
eula = true;
declarative = true;
declarative = true;
openFirewall = true;
dataDir = "/media/nas/ssd/ssd_app_data/minecraft";
serverProperties = {
@@ -28,7 +28,7 @@ in
};
adguardhome = {
enable = false;
enable = true;
allowDHCP = true;
port = 1880;
openFirewall = true;
@@ -133,10 +133,15 @@ in
};
tailscale = {
enable = false;
enable = true;
openFirewall = true;
useRoutingFeatures = "client";
extraUpFlags = [ "--advertise-exit-node" ];
extraSetFlags = [
"--advertise-exit-node"
"--hostname=jallen-nas"
"--webclient"
];
authKeyFile = "/media/nas/ssd/nix-app-data/tailscale/auth";
};