feat: reisen containers

This commit is contained in:
arcnmx 2024-01-06 14:45:38 -08:00
parent df7b0595a3
commit c725df2591
16 changed files with 238 additions and 64 deletions

View file

@ -1,6 +1,10 @@
{ config, lib, ... }: with lib;
{ config, name, lib, ... }: with lib;
{
networking.nftables.enable = true;
networking.tempAddresses = "disabled";
networking = {
nftables.enable = true;
tempAddresses = "disabled";
domain = mkDefault "gensokyo.zone";
hostName = mkOverride 25 name;
};
}