Merge pull request #19969 from tk-ecotelecom/fix-grsecurity

grsecurity: fix 'isYes' and 'isNo'
This commit is contained in:
Joachim F 2016-10-29 14:50:23 +02:00 committed by GitHub
commit 7bc5578d3f

View File

@ -67,9 +67,9 @@ in
system.requiredKernelConfig = with config.lib.kernelConfig;
[ (isEnabled "GRKERNSEC")
(isEnabled "PAX")
(isYES "GRKERNSEC_SYSCTL")
(isYES "GRKERNSEC_SYSCTL_DISTRO")
(isNO "GRKERNSEC_NO_RBAC")
(isYes "GRKERNSEC_SYSCTL")
(isYes "GRKERNSEC_SYSCTL_DISTRO")
(isNo "GRKERNSEC_NO_RBAC")
];
nixpkgs.config.grsecurity = true;