From 08c278d2c9e7c723dd6ade70df61bb28291440b3 Mon Sep 17 00:00:00 2001 From: Myned <dev@bjork.tech> Date: Mon, 17 Mar 2025 22:39:53 -0500 Subject: [PATCH] nix: fix preemptively adding files to store --- options/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/options/default.nix b/options/default.nix index 0622419..19610eb 100644 --- a/options/default.nix +++ b/options/default.nix @@ -1,5 +1,12 @@ {lib, ...}: with lib; { # Import all *.nix options from custom directory, excluding .*.nix - imports = filter (f: hasSuffix ".nix" f && !hasPrefix "." (builtins.baseNameOf f)) (filesystem.listFilesRecursive ./custom); + imports = + filter ( + file: let + f = builtins.baseNameOf file; + in + !hasPrefix "." f && hasSuffix ".nix" f + ) + (filesystem.listFilesRecursive ./custom); }