nix: Add explicit flake input for nixpkgs

Previous source of truth:
895a65f8d5/flake-registry.json (L302-L311)
This commit is contained in:
Shane Sveller 2024-12-05 14:36:17 -06:00 committed by Shane Sveller
parent 32d2a85539
commit 23a89f0d61
2 changed files with 6 additions and 2 deletions

6
flake.lock generated
View file

@ -28,8 +28,10 @@
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {

View file

@ -5,6 +5,8 @@
# For listing and iterating nix systems
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# For installing non-standard rustc versions
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";