mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
13 lines
216 B
Nix
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.";
|
|
};
|
|
};
|
|
}
|