feat: fix some dns stuff.

This commit is contained in:
CronyAkatsuki 2026-01-18 00:57:32 +01:00
parent 530584eeac
commit debf85aa88
3 changed files with 53 additions and 67 deletions

37
hosts.nix Normal file
View file

@ -0,0 +1,37 @@
{
heimdall = {
type = "server";
arch = "x86_64-linux";
};
bragi = {
type = "server";
arch = "aarch64-linux";
};
thor = {
type = "server";
arch = "aarch64-linux";
};
odin = {
type = "server";
arch = "aarch64-linux";
};
freyja = {
type = "server";
arch = "aarch64-linux";
};
tyr = {
type = "client";
arch = "x86_64-linux";
extraModules = [./modules/servers/tyr];
};
ymir = {
type = "client";
arch = "x86_64-linux";
extraModules = [./modules/linux/nixos];
};
skadi = {
type = "client";
arch = "x86_64-linux";
extraModules = [./modules/linux/nixos];
};
}