mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
226 B
Nix
14 lines
226 B
Nix
{ config, lib, ... }: with lib;
|
|
|
|
{
|
|
networking.nftables.enable = true;
|
|
|
|
network = {
|
|
enable = true;
|
|
dns = {
|
|
enable = mkDefault true;
|
|
email = "acme@kittywit.ch";
|
|
zone = "kittywit.ch.";
|
|
};
|
|
};
|
|
}
|