this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(wolumonde): move headplane dns record to the headplane module

dusk da0bdec1 c1978e90

+7 -7
+7
hosts/wolumonde/modules/headplane.nix
··· 57 57 age.secrets.headplaneSecrets.file = ../../../secrets/headplaneSecrets.age; 58 58 systemd.services.headplane.serviceConfig.EnvironmentFile = config.age.secrets.headplaneSecrets.path; 59 59 60 + services.headscale.settings.dns.extra_records = [ 61 + { 62 + name = "plane.${config.services.headscale.settings.dns.base_domain}"; 63 + type = "A"; 64 + value = "100.64.0.2"; 65 + } 66 + ]; 60 67 services.nginx.virtualHosts.${domain} = { 61 68 quic = true; 62 69 locations."=/".return = "301 /admin";
-7
hosts/wolumonde/modules/headscale.nix/default.nix
··· 29 29 "9.9.9.9" 30 30 "149.112.112.112" 31 31 ]; 32 - extra_records = [ 33 - { 34 - name = "plane.lan.gaze.systems"; 35 - type = "A"; 36 - value = "100.64.0.2"; 37 - } 38 - ]; 39 32 }; 40 33 oidc = { 41 34 issuer = config.services.pocket-id.settings.APP_URL;