config/hosts/TITAN/extras/custom-kernel.nix

10 lines
233 B
Nix
Raw Normal View History

2022-09-24 22:47:50 +03:00
{ config, lib, ... }:
{
boot.kernelPatches = lib.singleton {
name = "custom-kernel-config-${config.networking.hostName}";
patch = null;
extraConfig = builtins.readFile ./kernel-config.txt;
};
}