Files
config/profiles/nix-cgroups.nix
2025-02-21 18:44:24 +01:00

8 lines
170 B
Nix

{
# using cgroups for the nix sandbox is a bit slower, but more secure
nix.settings.use-cgroups = true;
nix.settings.experimental-features = [
"cgroups"
];
}