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

Grimmauld 86bccaf5 647e615a

Changed files
+4 -1
nixos
modules
services
networking
+4 -1
nixos/modules/services/networking/murmur.nix
···
ProtectKernelModules = true;
ProtectKernelTunables = true;
ProtectSystem = "full";
-
RestrictAddressFamilies = "~AF_PACKET AF_NETLINK";
+
RestrictAddressFamilies = [
+
"AF_INET"
+
"AF_INET6"
+
];
RestrictNamespaces = true;
RestrictSUIDSGID = true;
RestrictRealtime = true;