~jonsterling/forester-devel

flake.nix: add cachix to flake config v1 PROPOSED

Nick Hu: 1
 flake.nix: add cachix to flake config

 1 files changed, 4 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~jonsterling/forester-devel/patches/55921/mbox | git am -3
Learn more about email & git

[PATCH] flake.nix: add cachix to flake config Export this patch

This will make it so that the cachix config can be automatically
installed (the user is promped on first access).

(Compiling is very slow on my laptop...)

---
 flake.nix | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/flake.nix b/flake.nix
index 8f055b3..ea57f50 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,4 +1,8 @@
{
  nixConfig = {
    extra-substituters = [ "https://forester.cachix.org" ];
    extra-trusted-public-keys = [ "forester.cachix.org-1:pErGVVci7kZWxxcbQ/To8Lvqp6nVTeyPf0efJxbrQDM=" ];
  };
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    flake-utils.url = "github:numtide/flake-utils";
-- 
2.47.0
Thanks! I have now applied your patch on the 5.0 branch.

Best, Kento