10 lines
172 B
Nix
10 lines
172 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
(lib.mkRemovedOptionModule [ "security" "klogd" "enable" ] ''
|
||
|
Logging of kernel messages is now handled by systemd.
|
||
|
'')
|
||
|
];
|
||
|
}
|