From 48b050b283c668d0bf153ded130c91b840f805cc Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 10 Dec 2021 22:56:43 +0100 Subject: [PATCH] nix/nixos-module/defaults: use non-nft iptables-legacy for migration --- nix/nixos-module/defaults.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/nixos-module/defaults.nix b/nix/nixos-module/defaults.nix index 759006e..1f3e084 100644 --- a/nix/nixos-module/defaults.nix +++ b/nix/nixos-module/defaults.nix @@ -54,6 +54,11 @@ }; }; + nixpkgs.config.packageOverrides = pkgs: { + # TODO: remove when host is rebooted with a nixos-21.11 kernel + iptables = pkgs.iptables-legacy; + }; + documentation = { enable = false; nixos.enable = false;