nix: add systems input and fix zig follows

pull/11686/head
Luis Quiñones 2026-03-20 04:11:25 -05:00
parent 7966740b48
commit 220d6fd43d
No known key found for this signature in database
GPG Key ID: D6FC92FD3A094AF8
2 changed files with 10 additions and 1 deletions

View File

@ -54,6 +54,7 @@
"flake-compat": "flake-compat",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs",
"systems": "systems",
"zig": "zig",
"zon2nix": "zon2nix"
}
@ -82,7 +83,9 @@
"nixpkgs": [
"nixpkgs"
],
"systems": "systems"
"systems": [
"systems"
]
},
"locked": {
"lastModified": 1773145353,

View File

@ -17,11 +17,17 @@
flake = false;
};
systems = {
url = "github:nix-systems/default";
flake = false;
};
zig = {
url = "github:mitchellh/zig-overlay";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "flake-compat";
systems.follows = "systems";
};
};