26 lines
475 B
Nix
26 lines
475 B
Nix
|
tools: {
|
||
|
ssh.enable = true;
|
||
|
ssh.id = with tools.dns; {
|
||
|
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBi5Fm2pmMBhRgJms+me1ldt9Vgj9cMSnB7UllSz3mpY";
|
||
|
hostNames = subResolve "grail" "node";
|
||
|
};
|
||
|
|
||
|
interfaces = {
|
||
|
primary = {
|
||
|
addr = "37.27.11.202";
|
||
|
link = "enp1s0";
|
||
|
};
|
||
|
vstub = {
|
||
|
addr = "10.1.0.6";
|
||
|
link = "vstub";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
enterprise = {
|
||
|
subdomain = "node";
|
||
|
};
|
||
|
|
||
|
system = "aarch64-linux";
|
||
|
nixos = ./system.nix;
|
||
|
}
|