aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}