aboutsummaryrefslogtreecommitdiff
path: root/nixos/custom-hosts.nix
blob: 495adb43760bd92a7c8efef9400e4b22ea62de01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ ...
}:
let
  rootDomainName = "stvnliu.me";
  subdomains = [
    "git"
    "kellnr"
    "www"
    "blog"
    "files"
  ];
in
{
  networking.extraHosts = ''
    # home IP mapping 
    100.91.33.34 ${rootDomainName} ${builtins.concatStringsSep " " (map (x: x + "." + rootDomainName) subdomains)}
  '';
}