From c5f67c568ccee89f3e6f6d3a601a8d4e9f3c75bd Mon Sep 17 00:00:00 2001 From: Tamipes Date: Thu, 4 Jun 2026 21:48:32 +0200 Subject: [PATCH] feat: add my `nix-cache` to the full container --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index f6e805d..0b32008 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,13 @@ nix-with-tools = import (nix + "/docker.nix") { inherit pkgs; extraPkgs = [ pkgs.nodejs pkgs.skopeo ]; + nixConf = { + extra-substituters = [ "https://nix-cache.tami.moe" ]; + trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "nix-cache.tami.moe:3jrWZ412K0YTFfKMJC6ftc4lsugeMVWDBiudFCAdDb8=" + ]; + }; Labels = { "org.opencontainers.image.title" = "Nix";