From b2512750637cfed71bf1e10b164ffce1d0dcb0a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 27 Jun 2025 19:20:12 +0200 Subject: [PATCH] select: use nix_options copy --- pkgs/clan-cli/clan_lib/flake/flake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_lib/flake/flake.py b/pkgs/clan-cli/clan_lib/flake/flake.py index f7cd1440b..7549c9747 100644 --- a/pkgs/clan-cli/clan_lib/flake/flake.py +++ b/pkgs/clan-cli/clan_lib/flake/flake.py @@ -741,7 +741,7 @@ class Flake: select_hash = "@select_hash@" if not select_hash.startswith("sha256-"): - select_flake = Flake(str(select_source()), nix_options=self.nix_options) + select_flake = Flake(str(select_source()), nix_options=nix_options) select_flake.invalidate_cache() assert select_flake.hash is not None, ( "this should be impossible as invalidate_cache() should always set `hash`"