config/hosts/TITAN/extras/custom-kernel.nix
2022-09-24 21:47:50 +02:00

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;
};
}