From f7ce900a8cc674ee459dbec50b46af422c5bba75 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Thu, 20 Aug 2026 22:24:41 +0800 Subject: [PATCH] fix: remove incorrect pkgs. prefix from mixNixDeps reference mixNixDeps is a local let variable passed via inherit, no pkgs. prefix needed. Fixes issue #1. --- flake-template/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake-template/flake.nix b/flake-template/flake.nix index a5206f0..fff07c6 100644 --- a/flake-template/flake.nix +++ b/flake-template/flake.nix @@ -71,7 +71,7 @@ ln -sfv ${pkgs.tailwindcss}/bin/tailwindcss "$tailwind_path" ln -sfv ${pkgs.esbuild}/bin/esbuild "$esbuild_path" - ln -sfv ${pkgs.mixNixDeps.heroicons} deps/heroicons + ln -sfv ${mixNixDeps.heroicons} deps/heroicons mix do \ app.config --no-deps-check --no-compile, \