mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
13 lines
194 B
Nix
13 lines
194 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
network = {
|
|
enable = true;
|
|
nftables.enable = true;
|
|
dns = {
|
|
enable = true;
|
|
email = "kat@kittywit.ch";
|
|
tld = "kittywit.ch.";
|
|
};
|
|
};
|
|
}
|