From 5f7cdb99c75c03ad6a1601e5ea12dcce904a6105 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Fri, 22 Mar 2024 23:59:14 +0530 Subject: [PATCH] add binary caches --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flake.nix b/flake.nix index ec56fdb..a999530 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,15 @@ { description = "NixOS 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-unstable"; home-manager = {