aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-05-12 13:37:54 +0200
committerschererleander <leander@schererleander.de>2025-05-12 13:37:54 +0200
commit11155d36221452735a64cd23b91bc0133a65f1e5 (patch)
treebf690e02a7d24ba83ab83d4c2645f59b085614ec
parentd76b6fb73261c47b3849b778c380ee8d004d52da (diff)
add cachix
-rw-r--r--flake.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 2eb20dc..b9224ac 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,5 +1,14 @@
{
description = "Nix configuration";
+
+ nixConfig = {
+ extra-substituters = [
+ "https://nix-community.cachix.org"
+ ];
+ extra-trusted-public-keys = [
+ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+ ];
+ };
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
@@ -74,4 +83,4 @@
];
};
};
-} \ No newline at end of file
+}