Fixed path filters for neovim config

This commit is contained in:
2025-12-22 15:55:03 +00:00
parent 0a994a3013
commit 59b814dcbd
2 changed files with 10 additions and 8 deletions
+4 -2
View File
@@ -23,9 +23,11 @@
baseName = baseNameOf name;
in
! (
(lib.hasPrefix "." baseName)
(lib.hasPrefix "*/nvim/.*" name)
|| (lib.hasPrefix "." baseName)
|| (lib.hasPrefix "devenv" baseName)
|| (isRoot && (lib.hasSuffix ".toml" baseName || lib.hasSuffix ".yml" baseName))
|| (lib.hasSuffix ".toml" baseName)
|| (lib.hasSuffix ".yml" baseName)
);
};
target = ".config/nvim";