From dc3769542376b45d3f2cdf414c13abd1c884f826 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 29 May 2026 11:18:09 +0100 Subject: fix(nix): tuicr switched to packages.${system}.default schema Upstream tuicr commit 5b19712 migrated from the legacy `defaultPackage.` flake output to the standard `packages..default`, which broke `nix-update` with: error: attribute 'defaultPackage' missing --- nix/flake.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nix/flake.nix b/nix/flake.nix index ca2ad66..9e26edb 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -25,9 +25,7 @@ overlays = [ # Expose `pkgs.tuicr` so common.nix can list it next to other # packages without threading inputs into every module. - # tuicr's flake uses the legacy `defaultPackage.` - # schema (not `packages..default`); see its flake.nix. - (final: prev: { tuicr = tuicr.defaultPackage.${system}; }) + (final: prev: { tuicr = tuicr.packages.${system}.default; }) ]; # Whitelist specific unfree packages (claude-code, # github-copilot-cli) instead of globally setting allowUnfree, -- cgit v1.3.1