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,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; }
);
}