lol

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

authored by

Grimmauld and committed by
GitHub
86bccaf5 647e615a

+4 -1
+4 -1
nixos/modules/services/networking/murmur.nix
··· 350 350 ProtectKernelModules = true; 351 351 ProtectKernelTunables = true; 352 352 ProtectSystem = "full"; 353 - RestrictAddressFamilies = "~AF_PACKET AF_NETLINK"; 353 + RestrictAddressFamilies = [ 354 + "AF_INET" 355 + "AF_INET6" 356 + ]; 354 357 RestrictNamespaces = true; 355 358 RestrictSUIDSGID = true; 356 359 RestrictRealtime = true;