10 lines
233 B
Nix
10 lines
233 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
{
|
||
|
boot.kernelPatches = lib.singleton {
|
||
|
name = "custom-kernel-config-${config.networking.hostName}";
|
||
|
patch = null;
|
||
|
extraConfig = builtins.readFile ./kernel-config.txt;
|
||
|
};
|
||
|
}
|