2022-02-19 07:01:07 +00:00
|
|
|
# Configuration file configuring specialization
|
|
|
|
{ config, ... }: {
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: prev: {
|
2022-02-19 07:03:48 +00:00
|
|
|
linuxKernel.kernels.linux_xanmod = prev.linuxKernel.manualConfig {
|
|
|
|
inherit (prev) stdenv hostPlatform;
|
|
|
|
inherit (prev.linuxKernel.kernels.linux_xanmod) src version;
|
2022-02-19 07:01:07 +00:00
|
|
|
configfile = ../extra/linux/config-${config.networking.hostName};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|