9 lines
233 B
Nix
9 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;
|
|
};
|
|
}
|