summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kreutz <mail@skreutz.com>2025-08-26 16:06:20 +0200
committerStefan Kreutz <mail@skreutz.com>2025-08-26 16:06:20 +0200
commit402b3341f383dc04391ed298358e6ed337f3ec91 (patch)
tree153427a5e53bc9486baf5975eafb266a4b0efa17
parent24a9858c12e7fb4791b92396b59f3dce5efc9ebd (diff)
downloadbrck-main.tar
Deduplicate flake inputsHEADmain
-rw-r--r--flake.lock22
-rw-r--r--flake.nix5
2 files changed, 8 insertions, 19 deletions
diff --git a/flake.lock b/flake.lock
index f06ae63..22146a4 100644
--- a/flake.lock
+++ b/flake.lock
@@ -43,7 +43,9 @@
"naersk": {
"inputs": {
"fenix": "fenix",
- "nixpkgs": "nixpkgs"
+ "nixpkgs": [
+ "nixpkgs"
+ ]
},
"locked": {
"lastModified": 1752689277,
@@ -61,22 +63,6 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1752077645,
- "narHash": "sha256-HM791ZQtXV93xtCY+ZxG1REzhQenSQO020cu6rHtAPk=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "be9e214982e20b8310878ac2baa063a961c1bdf6",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "ref": "nixpkgs-unstable",
- "repo": "nixpkgs",
- "type": "github"
- }
- },
- "nixpkgs_2": {
- "locked": {
"lastModified": 1755829505,
"narHash": "sha256-4/Jd+LkQ2ssw8luQVkqVs9spDBVE6h/u/hC/tzngsPo=",
"owner": "NixOS",
@@ -95,7 +81,7 @@
"inputs": {
"flake-utils": "flake-utils",
"naersk": "naersk",
- "nixpkgs": "nixpkgs_2"
+ "nixpkgs": "nixpkgs"
}
},
"rust-analyzer-src": {
diff --git a/flake.nix b/flake.nix
index 15d8780..254f56d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,7 +4,10 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
- naersk.url = "github:nix-community/naersk";
+ naersk = {
+ url = "github:nix-community/naersk";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
};
outputs = { self, nixpkgs, flake-utils, naersk, ... }@inputs:
Generated by cgit. See skreutz.com for my tech blog and contact information.