aboutsummaryrefslogtreecommitdiff
path: root/nixos/custom-hosts.nix
blob: 423229eebf7119bb5a6d719d33ef7d7d7f82db2b (plain)
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)}
  '';
}