pinephonepro-nixos/kernel.nix

23 lines
359 B
Nix
Raw Permalink Normal View History

2026-03-12 22:20:44 -04:00
{
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=";
};
}
)