summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-07-17 21:14:24 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-07-24 12:54:07 +0200
commit5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e (patch)
treec5e444b8f9f35ce71803b86d639cf6fb33e1bf70 /nixos
parente064903a19f70f809b0491b52e0b17db2b99075c (diff)
downloadnixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar.gz
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar.bz2
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar.lz
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar.xz
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.tar.zst
nixpkgs-5ece58ed66c4f0fc07b0cabc626c6bc693d1d39e.zip
grsecurity module: add gradm to system path
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/security/grsecurity.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix
index e825679c343..b2b182595d8 100644
--- a/nixos/modules/security/grsecurity.nix
+++ b/nixos/modules/security/grsecurity.nix
@@ -52,9 +52,8 @@ in
         (isYES "GRKERNSEC_SYSCTL_DISTRO")
       ];
 
-    # Install PaX related utillities into the system profile.  Eventually, we
-    # also want to include gradm here.
-    environment.systemPackages = with pkgs; [ paxctl pax-utils ];
+    # Install PaX related utillities into the system profile.
+    environment.systemPackages = with pkgs; [ gradm paxctl pax-utils ];
 
     # Install rules for the grsec device node
     services.udev.packages = [ pkgs.gradm ];