From a930638109842f649cb1f0010ebf3fc169bdcb16 Mon Sep 17 00:00:00 2001 From: isabel Date: Thu, 1 Aug 2024 10:32:11 +0100 Subject: [PATCH] fix(nix): simplify file inputs --- nix/yazi-unwrapped.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/nix/yazi-unwrapped.nix b/nix/yazi-unwrapped.nix index 9a316531..f8aff879 100644 --- a/nix/yazi-unwrapped.nix +++ b/nix/yazi-unwrapped.nix @@ -18,19 +18,9 @@ let fileset = lib.fileset.intersection (lib.fileset.fromSource (lib.sources.cleanSource ../.)) ( lib.fileset.unions [ ../assets - ../yazi-adapter - ../yazi-boot - ../yazi-cli - ../yazi-config - ../yazi-core - ../yazi-dds - ../yazi-fm - ../yazi-plugin - ../yazi-proxy - ../yazi-scheduler - ../yazi-shared ../Cargo.toml ../Cargo.lock + (lib.fileset.fileFilter (file: file.hasExt "rs" || file.hasExt "toml") ../.) ] ); };