2 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index f366fe5..961cbc3 100755
--- a/build.sh
+++ b/build.sh
@@ -12,7 +12,7 @@ ROOT=$1
CONFIG=$2
DERIVATION=".#nixosConfigurations.${CONFIG}.config.system.build.toplevel"
-EXTRA_NIX_FLAGS="-L --accept-flake-config --keep-going"
+EXTRA_NIX_FLAGS="-L --accept-flake-config --keep-going --show-trace"
EXTRA_NIXOS_REBUILD_FLAGS="--sudo --no-reexec --offline" # legacy: --use-remote-sudo --fast
if [ "${ROOT}" = "/" ]; then
diff --git a/host/Rory-nginx/configuration.nix b/host/Rory-nginx/configuration.nix
index 431856c..7ef5f46 100644
--- a/host/Rory-nginx/configuration.nix
+++ b/host/Rory-nginx/configuration.nix
@@ -42,6 +42,7 @@
}
];
defaultGateway.interface = "ens18";
+ defaultGateway.address = "192.168.1.1";
nat = {
enable = true;
internalInterfaces = [
|