From 7f7634c1b174008c4468a832bbdcc50a46e193da Mon Sep 17 00:00:00 2001 From: Hermes Date: Tue, 9 Jun 2026 19:23:53 -0400 Subject: [PATCH] fix(uconsole): stop following nixpkgs for nixos-uconsole and nixos-raspberrypi Remove inputs.nixpkgs.follows so these inputs use their own pinned nixpkgs. This lets the uConsole build use the nixos-uconsole Cachix cache for the kernel, avoiding 4h kernel recompilation on every config change. --- flake.nix | 2 -- 1 file changed, 2 deletions(-) mode change 100644 => 100755 flake.nix diff --git a/flake.nix b/flake.nix old mode 100644 new mode 100755 index e10dad6..9740f2f --- a/flake.nix +++ b/flake.nix @@ -18,11 +18,9 @@ }; nixos-uconsole = { url = "github:nixos-uconsole/nixos-uconsole"; - inputs.nixpkgs.follows = "nixpkgs"; }; nixos-raspberrypi = { url = "github:nvmd/nixos-raspberrypi/v1.20260517.0"; - inputs.nixpkgs.follows = "nixpkgs"; }; self.submodules = true; };