remove npins, add nix formatter, bump to jhovold 6.11-rc6

This commit is contained in:
steveej 2024-09-05 22:09:47 +02:00
parent 1c72da4c69
commit 99a7228961
8 changed files with 56 additions and 140 deletions

View file

@ -1,6 +1,10 @@
{ lib, pkgs, ... }:
{
inputs,
lib,
pkgs,
...
}:
let
sources = import ../npins;
linux_x13s_pkg =
{ version, buildLinux, ... }@args:
@ -16,8 +20,8 @@ let
in
{
linux_jhovold = pkgs.callPackage linux_x13s_pkg {
src = sources.linux-jhovold;
version = "6.11.0-rc1";
src = inputs.linux-jhovold;
version = "6.11-rc6";
defconfig = "johan_defconfig";
};

View file

@ -1,4 +1,9 @@
{ lib, withSystem, ... }:
{
inputs,
lib,
withSystem,
...
}:
{
perSystem =
{ pkgs, ... }:
@ -10,6 +15,6 @@
};
flake.packages.aarch64-linux = withSystem "aarch64-linux" (
{ pkgs, ... }: import ./default.nix { inherit lib pkgs; }
{ pkgs, ... }: import ./default.nix { inherit inputs lib pkgs; }
);
}