🔍 coredns updates

This commit is contained in:
2021-07-09 22:59:33 -04:00
parent baf07fe418
commit 385a8793b0
4 changed files with 47 additions and 25 deletions

View File

@ -9,6 +9,7 @@ in {
./networking.nix # generated at runtime by nixos-infect
<home-manager/nixos>
../../modules/coredns
../../modules/matrix/nginx.nix
];
@ -20,8 +21,6 @@ in {
networking.hostName = "socrates";
networking.firewall.allowPing = true;
networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.nameservers = [ "100.111.208.75" "1.1.1.1" ];
networking.search = [ "walkah.lab" ];
security.sudo.wheelNeedsPassword = false;
@ -50,6 +49,11 @@ in {
security.acme.acceptTerms = true;
security.acme.email = "walkah@walkah.net";
walkah.coredns = {
enable = true;
addr = "100.103.57.96";
};
services = {
nginx = {
enable = true;