populate ip address based on hostname and populate the hostfile with other vm ips
This commit is contained in:
parent
a6db8ef50f
commit
e9375ad338
7 changed files with 87 additions and 8 deletions
|
@ -4,7 +4,6 @@
|
||||||
../../modules/jitsi.nix
|
../../modules/jitsi.nix
|
||||||
../../roles
|
../../roles
|
||||||
../../roles/vm.nix
|
../../roles/vm.nix
|
||||||
../../modules/vmNetwork.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
services.mathebau-jitsi = {
|
services.mathebau-jitsi = {
|
||||||
|
@ -14,6 +13,5 @@
|
||||||
|
|
||||||
# System configuration here
|
# System configuration here
|
||||||
networking.hostName = "ghatanothoa";
|
networking.hostName = "ghatanothoa";
|
||||||
vmNetwork.ipv4 = "192.168.0.25";
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
../../modules/mailman.nix
|
../../modules/mailman.nix
|
||||||
../../roles
|
../../roles
|
||||||
../../roles/vm.nix
|
../../roles/vm.nix
|
||||||
../../modules/vmNetwork.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# System configuration here
|
# System configuration here
|
||||||
|
@ -16,7 +15,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "lobon";
|
networking.hostName = "lobon";
|
||||||
vmNetwork.ipv4 = "192.168.0.22";
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
||||||
sops.secrets = {
|
sops.secrets = {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../roles
|
../../roles
|
||||||
../../roles/vm.nix
|
../../roles/vm.nix
|
||||||
../../modules/vmNetwork.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# System configuration here
|
# System configuration here
|
||||||
|
@ -11,6 +10,5 @@
|
||||||
environment.systemPackages = [pkgs.git];
|
environment.systemPackages = [pkgs.git];
|
||||||
|
|
||||||
networking.hostName = "nodens";
|
networking.hostName = "nodens";
|
||||||
vmNetwork.ipv4 = "192.168.0.18";
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
../../modules/mail.nix
|
../../modules/mail.nix
|
||||||
../../roles
|
../../roles
|
||||||
../../roles/vm.nix
|
../../roles/vm.nix
|
||||||
../../modules/vmNetwork.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# System configuration here
|
# System configuration here
|
||||||
|
@ -40,7 +39,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "nyarlathotep";
|
networking.hostName = "nyarlathotep";
|
||||||
vmNetwork.ipv4 = "192.168.0.17";
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
sops.secrets = let
|
sops.secrets = let
|
||||||
|
|
54
nixos/roles/hostmap.nix
Normal file
54
nixos/roles/hostmap.nix
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
# This data is taken from /etc/hosts from azatoth
|
||||||
|
{
|
||||||
|
bragi = {
|
||||||
|
ipv4 = "192.168.1.11";
|
||||||
|
};
|
||||||
|
tsathoggua = {
|
||||||
|
ipv4 = "192.168.0.13";
|
||||||
|
};
|
||||||
|
nyogtha = {
|
||||||
|
ipv4 = "192.168.0.14";
|
||||||
|
};
|
||||||
|
hastur = {
|
||||||
|
ipv4 = "192.168.0.15";
|
||||||
|
};
|
||||||
|
cthulhu = {
|
||||||
|
ipv4 = "192.168.0.16";
|
||||||
|
};
|
||||||
|
nyarlathotep = {
|
||||||
|
ipv4 = "192.168.0.17";
|
||||||
|
};
|
||||||
|
nodens = {
|
||||||
|
ipv4 = "192.168.0.18";
|
||||||
|
};
|
||||||
|
uvhash = {
|
||||||
|
ipv4 = "192.168.0.19";
|
||||||
|
};
|
||||||
|
aphoom-zhah = {
|
||||||
|
ipv4 = "192.168.0.20";
|
||||||
|
};
|
||||||
|
dagon = {
|
||||||
|
ipv4 = "192.168.0.21";
|
||||||
|
};
|
||||||
|
lobon = {
|
||||||
|
ipv4 = "192.168.0.22";
|
||||||
|
};
|
||||||
|
yibb-tstll = {
|
||||||
|
ipv4 = "192.168.0.23";
|
||||||
|
};
|
||||||
|
eihort = {
|
||||||
|
ipv4 = "192.168.0.24";
|
||||||
|
};
|
||||||
|
ghatanothoa = {
|
||||||
|
ipv4 = "192.168.0.25";
|
||||||
|
};
|
||||||
|
toth = {
|
||||||
|
ipv4 = "192.168.0.26";
|
||||||
|
};
|
||||||
|
ithaqua = {
|
||||||
|
ipv4 = "192.168.0.27";
|
||||||
|
};
|
||||||
|
cthugha = {
|
||||||
|
ipv4 = "192.168.0.30";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
{modulesPath, ...}: {
|
{modulesPath, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
(modulesPath + "/virtualisation/xen-domU.nix")
|
(modulesPath + "/virtualisation/xen-domU.nix")
|
||||||
|
./vmNetwork.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
32
nixos/roles/vmNetwork.nix
Normal file
32
nixos/roles/vmNetwork.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib) lists mapAttrsToList;
|
||||||
|
inherit (lib.attrsets) foldAttrs concatMapAttrs;
|
||||||
|
inherit (lib.asserts) assertMsg;
|
||||||
|
inherit (builtins) elem;
|
||||||
|
hostmap = import ./hostmap.nix;
|
||||||
|
myhostName = config.networking.hostName;
|
||||||
|
# We replace our own ip with 127.0.0.1 in /etc/hosts
|
||||||
|
# To turn the hostmap around suitable for networking.hosts the following simple code almost works
|
||||||
|
# concatMapAttrs (hostname: ipData: { ${ipData.ipv4} = [hostname]; }) hostmap
|
||||||
|
# but breaks as soon as we want to map two different names to the same ip.
|
||||||
|
# So the code looks uglier than one would expect.
|
||||||
|
globalhosts = foldAttrs (a: b: a ++ b) [] (mapAttrsToList (hostname: ipData: {${ipData.ipv4} = [hostname];}) hostmap);
|
||||||
|
myhosts = concatMapAttrs (ip: hosts:
|
||||||
|
if (elem myhostName hosts)
|
||||||
|
# nixos maps the hostname to the loopback 127.0.0.2 by default, so we exclude it here.
|
||||||
|
# there is also a default localhost to 127.0.0.1 in place
|
||||||
|
then {"127.0.0.1" = lists.filter (x: x != myhostName) hosts;}
|
||||||
|
else {${ip} = hosts;})
|
||||||
|
globalhosts;
|
||||||
|
myIp = assert assertMsg hostmap ? ${myhostName}.ipv4 "${myhostName} has no ip configured in nixos/roles/hostmap.nix"; hostmap.${myhostName}.ipv4;
|
||||||
|
in {
|
||||||
|
imports = [
|
||||||
|
../modules/vmNetwork.nix
|
||||||
|
];
|
||||||
|
networking.hosts = myhosts;
|
||||||
|
vmNetwork.ipv4 = myIp;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue