remove npins, add nix formatter, bump to jhovold 6.11-rc6
This commit is contained in:
parent
1c72da4c69
commit
99a7228961
8 changed files with 56 additions and 140 deletions
14
flake.nix
14
flake.nix
|
@ -2,6 +2,9 @@
|
|||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
|
||||
linux-jhovold.url = "github:jhovold/linux/wip/sc8280xp-6.11-rc6";
|
||||
linux-jhovold.flake = false;
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
@ -21,7 +24,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
devShells = rec {
|
||||
default = pkgs.mkShellNoCC { packages = [ pkgs.npins ] ++ ci.nativeBuildInputs; };
|
||||
default = pkgs.mkShellNoCC { packages = ci.nativeBuildInputs; };
|
||||
|
||||
ci = pkgs.mkShellNoCC {
|
||||
packages = [
|
||||
|
@ -36,9 +39,16 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
formatter = pkgs.nixfmt-rfc-style;
|
||||
};
|
||||
|
||||
flake.nixosModules.default = import ./module.nix { inherit dtbName; };
|
||||
flake.nixosModules.default = import ./module.nix {
|
||||
inherit dtbName;
|
||||
|
||||
# FIXME: don't hardcode this with the arch
|
||||
x13sPackages = self.packages.aarch64-linux;
|
||||
};
|
||||
|
||||
flake.nixosConfigurations = {
|
||||
example = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue