We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See discussion here: NixOS/nixpkgs#226365 (comment)
Because nftables uses '*' instead of '+' for matching wildcards, this line in the generated .nix file causes nixos to fail to build:
networking.firewall.interfaces."podman+".allowedUDPPorts = [ 53 ];
Changing the line to:
networking.firewall.interfaces."podman*".allowedUDPPorts = [ 53 ];
works around the issue.
The text was updated successfully, but these errors were encountered:
@aqxa1 This should now be fixed. Please let me know if you hit any issues.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
See discussion here: NixOS/nixpkgs#226365 (comment)
Because nftables uses '*' instead of '+' for matching wildcards, this line in the generated .nix file causes nixos to fail to build:
Changing the line to:
works around the issue.
The text was updated successfully, but these errors were encountered: