Skip to content

Commit

Permalink
grsecurity: fix 'isYes' and 'isNo'
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofei Kushnir committed Oct 29, 2016
1 parent fa4167c commit faa6f9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nixos/modules/security/grsecurity.nix
Expand Up @@ -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;
Expand Down

0 comments on commit faa6f9b

Please sign in to comment.