fix: our own derivation for the kernel in order to be able to sign modules

This commit is contained in:
Lars Sjöström 2025-03-13 09:36:42 +01:00
parent 3dec49b2e4
commit 2c2d212e25
No known key found for this signature in database
10 changed files with 508 additions and 32 deletions
pkgs/kernel

View file

@ -1,9 +1,9 @@
{ pkgs, ... }:
{ pkgs, lib, stdenv, ... }:
let
version = "6.13.4";
in
pkgs.linuxPackagesFor (
pkgs.linuxManualConfig {
(pkgs.callPackage ./manual-config.nix { }) {
inherit lib stdenv;
version = "${version}-patos1";
modDirVersion = version;
src = pkgs.fetchurl {
@ -13,4 +13,3 @@ pkgs.linuxPackagesFor (
configfile = ./generic.config;
allowImportFromDerivation = true;
}
)