services.ulogd.settings
NixOS option
Configuration for ulogd. See /share/doc/ulogd/ in pkgs.ulogd.doc.
type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string) or a list of them for duplicate keys)Default
{ }Example
declared in: nixos/modules/services/logging/ulogd.nixView source on NixOS/nixpkgs →{
emu1 = {
file = "/var/log/ulogd_pkts.log";
sync = 1;
};
global = {
stack = [
"log1:NFLOG,base1:BASE,ifi1:IFINDEX,ip2str1:IP2STR,print1:PRINTPKT,emu1:LOGEMU"
"log1:NFLOG,base1:BASE,pcap1:PCAP"
];
};
log1 = {
group = 2;
};
pcap1 = {
file = "/var/log/ulogd.pcap";
sync = 1;
};
}