This commit is contained in:
Tristan Ross 2025-10-30 00:28:17 -04:00 committed by GitHub
commit f149f88667
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 184 additions and 80 deletions

View file

@ -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 =