nixos/{tmpfiles, wrappers}: explicitly set RestrictSUIDSGID false (#426882)

Changed files
+2
nixos
modules
security
wrappers
system
boot
systemd
+1
nixos/modules/security/wrappers/default.nix
···
"/nix/store"
"/run/wrappers"
];
+
serviceConfig.RestrictSUIDSGID = false;
serviceConfig.Type = "oneshot";
script = ''
chmod 755 "${parentWrapperDir}"
+1
nixos/modules/system/boot/systemd/tmpfiles.nix
···
"network.hosts"
"ssh.authorized_keys.root"
];
+
RestrictSUIDSGID = false;
};
};