1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ ... }: let rootDomainName = "stvnliu.me"; subdomains = [ "git" "kellnr" "www" "blog" "files" "code" "chat" ]; in { networking.extraHosts = '' # home IP mapping 100.91.33.34 ${rootDomainName} ${builtins.concatStringsSep " " (map (x: x + "." + rootDomainName) subdomains)} ''; }