summaryrefslogtreecommitdiff
path: root/flake.nix
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 /flake.nix
parent24a9858c12e7fb4791b92396b59f3dce5efc9ebd (diff)
downloadbrck-402b3341f383dc04391ed298358e6ed337f3ec91.tar
Deduplicate flake inputsHEADmain
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
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.