infra/nix/os/profiles/containers/configuration.nix

19 lines
406 B
Nix
Raw Normal View History

{pkgs, ...}: {
2022-03-20 16:40:47 +01:00
networking.useHostResolvConf = false;
networking.firewall.enable = true;
networking.nftables.enable = true;
networking.nftables.flushRuleset = true;
environment.systemPackages = [
pkgs.dnsutils
];
imports = [
../../snippets/systemd-resolved.nix
2024-06-01 21:46:09 +02:00
../../snippets/nix-settings.nix
# ../../modules/ddclient-ovh.nix
# ../../modules/ddclient-hetzner.nix
];
2019-02-03 14:31:21 +01:00
}