From 23a89f0d61ba2aba57b998b97c90ac44e7d85785 Mon Sep 17 00:00:00 2001 From: Shane Sveller Date: Thu, 5 Dec 2024 14:36:17 -0600 Subject: [PATCH] nix: Add explicit flake input for nixpkgs Previous source of truth: https://github.com/NixOS/flake-registry/blob/895a65f8d5acf848136ee8fe8e8f736f0d27df96/flake-registry.json#L302-L311 --- flake.lock | 6 ++++-- flake.nix | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/flake.lock b/flake.lock index ddc6d9b4d..92fbc772b 100644 --- a/flake.lock +++ b/flake.lock @@ -28,8 +28,10 @@ "type": "github" }, "original": { - "id": "nixpkgs", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, "root": { diff --git a/flake.nix b/flake.nix index 6021840cc..a55062799 100644 --- a/flake.nix +++ b/flake.nix @@ -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";