From 652cf120e062e3ddf5d6707bfe53e8ab80bcf711 Mon Sep 17 00:00:00 2001 From: jmarkin Date: Sun, 7 Dec 2025 01:27:35 +0300 Subject: [PATCH] change bin cache --- flake.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 38d53e1..fc18c25 100644 --- a/flake.nix +++ b/flake.nix @@ -1,16 +1,17 @@ { description = "Nix-flaked Neovim configuration with extensive plugin management and AI tooling integration"; + nixConfig = { - # Custom binary cache for faster builds extra-substituters = [ - "http://tln.jmarkin.ru:8501" + "https://nixcache.jmarkin.ru" ]; extra-trusted-public-keys = [ - "tln.jmarkin.ru:EOj0yG2nmqNFVZA1GWYKZ8JU8uZHbAzvYXglA8u+yKw=" + "nixcache.jmarkin.ru:EM46eZT5GshZQEZHKtFZa3f/KTnxh2bdU/TSuwkAtQ0=" ]; }; + inputs = { # Core Nix infrastructure nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";