infrastructure/nixos/hosts/hades/dns/configuration.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-04 13:08:10 +02:00
{ pkgs, ... }: {
2023-04-29 20:39:16 +02:00
imports = [ ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
# Additional packages
2023-05-01 08:47:21 +02:00
environment.systemPackages = with pkgs; [ dig dogdns ];
2023-04-29 20:39:16 +02:00
services.v.dns = {
enable = true;
openFirewall = true;
mode = "server";
};
2023-05-29 18:08:25 +02:00
services.unbound.settings.server = {
local-zone = [
"xirion.net typetransparent"
"hades.xirion.net typetransparent"
"requests.xirion.net typetransparent"
"ha.xirion.net typetransparent"
"mail.xirion.net typetransparent"
];
local-data = [
''"xirion.net A 192.168.0.122"''
''"hades.xirion.net A 192.168.0.122"''
''"requests.xirion.net A 192.168.0.122"''
''"ha.xirion.net A 192.168.0.122"''
''"mail.xirion.net A 192.168.0.122"''
];
};
2023-04-29 20:39:16 +02:00
}