nixos/murmur: Reverse order of allowed address families (#441983)

This commit is contained in:
Grimmauld
2025-09-16 20:24:46 +00:00
committed by GitHub
+4 -1
View File
@@ -350,7 +350,10 @@ in
ProtectKernelModules = true;
ProtectKernelTunables = true;
ProtectSystem = "full";
RestrictAddressFamilies = "~AF_PACKET AF_NETLINK";
RestrictAddressFamilies = [
"AF_INET"
"AF_INET6"
];
RestrictNamespaces = true;
RestrictSUIDSGID = true;
RestrictRealtime = true;