1
0
Fork 0
nixos/config/security.nix

12 lines
192 B
Nix
Raw Normal View History

{ config, lib, ... }:
2019-02-26 13:44:40 +01:00
with lib;
mkIf (elem "security" config.machine.conffiles) {
2019-02-26 13:44:40 +01:00
security = {
audit.enable = true;
auditd.enable = true;
hideProcessInformation = true;
};
}