mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
c099ec6aff
This module only has an effect for ancient kernel versions we don't support.
9 lines
172 B
Nix
9 lines
172 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "security" "klogd" "enable" ] ''
|
|
Logging of kernel messages is now handled by systemd.
|
|
'')
|
|
];
|
|
}
|