not working

This commit is contained in:
Clayton Hickey 2026-03-12 22:20:44 -04:00
commit dbf7da4c57
Signed by: clay53
SSH key fingerprint: SHA256:fjW4+nfPltYzrJ4uZlYQvrYMshxHnah2S4qM8Hth9HQ
5 changed files with 115 additions and 0 deletions

22
kernel.nix Normal file
View file

@ -0,0 +1,22 @@
{
lib,
buildLinux,
fetchgit,
...
}@args:
let
version = "6.19.0";
modDirVersion = "6.19.0";
in
buildLinux (
args
//
{
inherit version modDirVersion;
pname = "linux-pinephonepro";
src = fetchgit {
url = "https://codeberg.org/megi/linux.git";
sha256 = "sha256-axwiWkZeMwbpBc1NGqOKk6i3iW3ndVqAtDJi/+ww6wI=";
};
}
)