nixos/config/security.nix

10 lines
139 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{ config, lib, pkgs, ... }:
{
security = {
audit.enable = true;
auditd.enable = true;
hideProcessInformation = true;
};
}