infrastructure/config/profiles/base/network.nix
2021-08-18 03:20:46 +01:00

13 lines
194 B
Nix

{ config, lib, ... }:
{
network = {
enable = true;
nftables.enable = true;
dns = {
enable = true;
email = "kat@kittywit.ch";
tld = "kittywit.ch.";
};
};
}