summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-11-18 23:18:01 -0700
committerKenny Ballou <kballou@devnulllabs.io>2019-11-18 23:18:01 -0700
commitc0a124062a2cfa7e212b5718adcc8c4128562320 (patch)
tree00d7cfa61d4fd3df663455ec50b7912a79eff377 /system
parent95db843e3d6bc54788e852b232d2aec0716be22f (diff)
downloadcfg.nix-c0a124062a2cfa7e212b5718adcc8c4128562320.tar.gz
cfg.nix-c0a124062a2cfa7e212b5718adcc8c4128562320.tar.xz
add new system/security module
Simply flip the hide process information security knob for now. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'system')
-rw-r--r--system/security.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/security.nix b/system/security.nix
new file mode 100644
index 0000000..486f714
--- /dev/null
+++ b/system/security.nix
@@ -0,0 +1,4 @@
+{ config, ... }:
+{
+ security.hideProcessInformation = true;
+}