nix: add systems input and fix zig follows

This commit is contained in:
Luis Quiñones
2026-03-20 04:11:25 -05:00
parent 7966740b48
commit 220d6fd43d
2 changed files with 10 additions and 1 deletions

5
flake.lock generated
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";
};
};