10 lines
139 B
Nix
10 lines
139 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
security = {
|
||
|
audit.enable = true;
|
||
|
auditd.enable = true;
|
||
|
hideProcessInformation = true;
|
||
|
};
|
||
|
}
|