try to fix

This commit is contained in:
2023-12-03 19:28:10 +01:00
parent a1bbf635d3
commit 62d6e85e5a

View File

@@ -111,7 +111,7 @@ in
isReadOnly = true; isReadOnly = true;
}; };
}; };
config = { config, pkgs, ... }: { config = { lib, config, pkgs, ... }: {
networking.hostName = "fw"; networking.hostName = "fw";
services.nginx.virtualHosts."${domain}" = { services.nginx.virtualHosts."${domain}" = {
@@ -156,7 +156,7 @@ in
allowedTCPPorts = [ 22 80 443 ]; allowedTCPPorts = [ 22 80 443 ];
}; };
# Use systemd-resolved inside the container # Use systemd-resolved inside the container
useHostResolvConf = mkForce false; useHostResolvConf = lib.mkForce false;
}; };
services.resolved.enable = true; services.resolved.enable = true;