nixos/networking.firewall: fix refactor regression

This fixes a regression that was introduced in #335631
This commit is contained in:
azahi 2024-09-16 01:10:55 +03:00
parent ba74d07245
commit 94c62f5036
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B

View File

@ -186,7 +186,7 @@ in
'';
};
lib.filterForward = lib.mkOption {
filterForward = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
@ -263,7 +263,7 @@ in
assertions = [
{
assertion = cfg.lib.filterForward -> config.networking.nftables.enable;
assertion = cfg.filterForward -> config.networking.nftables.enable;
message = "filterForward only works with the nftables based firewall";
}
{