Merge branch 'production' into next

This commit is contained in:
2025-05-12 12:31:36 +08:00
2 changed files with 7 additions and 3 deletions

6
flake.lock generated
View File

@@ -987,11 +987,11 @@
]
},
"locked": {
"lastModified": 1746422433,
"narHash": "sha256-nW0RYiwihHIqVOQZvBbeNmg68w95c4GBHPeZwAjCJeU=",
"lastModified": 1747022898,
"narHash": "sha256-nFs4IlGuCBwaoocTMS0JnNP9PxD+M6NE+vU0Ta2RKT4=",
"owner": "CHN-beta",
"repo": "NixVirt",
"rev": "648bd88b426289728f54c0c3c19a861596c725bd",
"rev": "a9f046e284d68e579b97ec9653693c1a12d9ffb5",
"type": "github"
},
"original": {

View File

@@ -206,6 +206,10 @@ inputs:
type nat hook prerouting priority dstnat; policy accept;
${builtins.concatStringsSep "\n" nftRules}
}
chain output {
type nat hook output priority dstnat; policy accept;
${builtins.concatStringsSep "\n" nftRules}
}
}
'';
start = inputs.pkgs.writeShellScript "nixvirt.start" "${nft} -f ${nftConfigFile}";