2022-10-22 20:37:48 +03:00
|
|
|
{ modulesPath, ... }: {
|
2020-12-16 20:57:57 +03:00
|
|
|
imports = [
|
2022-10-22 20:37:48 +03:00
|
|
|
# Source:
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/hardened.nix
|
|
|
|
(modulesPath + "/profiles/hardened.nix")
|
2020-12-16 20:57:57 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
## Reset some options set by the hardened profile
|
|
|
|
|
|
|
|
# Needed for sandboxed builds and services
|
|
|
|
security.allowUserNamespaces = true;
|
|
|
|
|
2021-08-05 01:48:56 +03:00
|
|
|
# The "scudo" allocator is broken on NixOS >= 20.09
|
2020-12-16 20:57:57 +03:00
|
|
|
environment.memoryAllocator.provider = "libc";
|
|
|
|
}
|