mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-12-03 15:41:07 +01:00
Merge 350fd669eb into 2379bc4099
This commit is contained in:
commit
f149f88667
10 changed files with 184 additions and 80 deletions
19
flake.nix
19
flake.nix
|
|
@ -1,10 +1,27 @@
|
|||
{
|
||||
description = "nixos-hardware";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
|
||||
|
||||
outputs =
|
||||
{ ... }:
|
||||
{ nixpkgs, ... }:
|
||||
let
|
||||
inherit (nixpkgs.lib)
|
||||
genAttrs
|
||||
;
|
||||
|
||||
eachSystem = genAttrs [
|
||||
"aarch64-linux"
|
||||
"x86_64-linux"
|
||||
"riscv64-linux"
|
||||
];
|
||||
in
|
||||
{
|
||||
|
||||
hydraJobs = import ./jobs.nix nixpkgs;
|
||||
|
||||
packages = eachSystem (system: import ./. { pkgs = nixpkgs.legacyPackages.${system}; });
|
||||
|
||||
nixosModules =
|
||||
let
|
||||
deprecated =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue