patos/modules/config/minimal-modules.nix
Daniel Lundin a1763b981c
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
WIP: next step on image build
2024-11-14 17:15:04 +01:00

15 lines
391 B
Nix

{ config, ... }:
{
boot = {
bootspec.enable = false;
initrd.kernelModules = config.boot.kernelModules;
kernel.enable = false; # No kernel or modules in the rootfs
modprobeConfig.enable = false;
};
system.build = {
inherit (config.boot.kernelPackages) kernel;
};
system.modulesTree = [ config.boot.kernelPackages.kernel ] ++ config.boot.extraModulePackages;
}