29 lines
501 B
Nix
29 lines
501 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
age.secrets.dns02-admin-password.file = ../../secrets/dns02-admin-password.age;
|
|
|
|
my = {
|
|
|
|
networking.technitium-dns-server = {
|
|
enable = true;
|
|
dnsOverHttps = true;
|
|
adminPasswordFile = config.age.secrets.dns02-admin-password.path;
|
|
};
|
|
|
|
utils = {
|
|
commons.enable = true;
|
|
commons.gc.enable = true;
|
|
lxc-standard.enable = true;
|
|
};
|
|
|
|
virtualisation.proxmox.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|