Make systems overridable

This commit is contained in:
Martin Puppe 2024-06-10 21:58:06 +02:00
parent 4fac16904d
commit c6f236f787
2 changed files with 43 additions and 25 deletions

18
flake.lock generated
View file

@ -50,7 +50,23 @@
"inputs": { "inputs": {
"financier": "financier", "financier": "financier",
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"systems": "systems"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
} }
} }
}, },

View file

@ -1,4 +1,5 @@
{ {
inputs.systems.url = "github:nix-systems/default";
inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.financier = { inputs.financier = {
url = "github:puppe/financier/fix-yarn2nix"; url = "github:puppe/financier/fix-yarn2nix";
@ -6,7 +7,8 @@
}; };
outputs = inputs@{ self, nixpkgs, ... }: outputs = inputs@{ self, nixpkgs, ... }:
inputs.flake-utils.lib.eachDefaultSystem (system: inputs.flake-utils.lib.eachSystem (import inputs.systems)
(system:
let pkgs = import nixpkgs { inherit system; }; let pkgs = import nixpkgs { inherit system; };
in { in {