2019-02-26 13:44:40 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2019-03-20 02:57:59 +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;
|
|
|
|
};
|
|
|
|
}
|