infrastructure/config/profiles/base/network.nix
2021-09-01 22:35:07 +01:00

13 lines
216 B
Nix

{ config, lib, ... }: with lib;
{
network = {
enable = true;
nftables.enable = true;
dns = {
enable = mkDefault true;
email = "acme@kittywit.ch";
zone = "kittywit.ch.";
};
};
}