From 21f6b578ee6c41f12458e0df47f36ca3d0ecb531 Mon Sep 17 00:00:00 2001 From: Grey Jones Date: Sun, 30 Aug 2026 02:21:36 +0100 Subject: [PATCH] homeFilesFromStringAttrs: add brackets to fix binding --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 02fd23e..06ccc0d 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,6 @@ text = y; executable = exec; }; - }) builtins.attrValues attrs) ) builtins.attrNames attrs; + }) (builtins.attrValues attrs)) ) (builtins.attrNames attrs); }; }