Make MagicDNS fully qualified hostnames work

inky
Elnu 9 months ago
parent 25cb4f70ec
commit d4bb4e7ad9

@ -34,7 +34,6 @@ in
networking = {
networkmanager.enable = true;
resolvconf.enable = false; # prevent default nameservers
nameservers = [ "1.1.1.1" "1.0.0.1" ];
};
@ -57,6 +56,8 @@ in
# To prevent `Unit dconf.service not found.` after theming GTK in HM
programs.dconf.enable = true;
networking.search = [ "elnu.com" ];
networking.extraHosts = ''
192.168.0.26 elnuhub
192.168.0.26 elnuhub.local

@ -10,7 +10,10 @@ in {
port = 8080;
settings = {
server_url = "https://${domain}";
dns_config.base_domain = baseDomain;
dns_config = {
base_domain = baseDomain;
domains = [ baseDomain ];
};
};
};
environment.systemPackages = [ config.services.headscale.package ];

Loading…
Cancel
Save