From ce703cf83f8f93fd897252986083b29cddb2e65e Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Fri, 4 Oct 2024 15:09:52 -0400 Subject: [PATCH] fix --- modules/flake-parts/template.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/flake-parts/template.nix b/modules/flake-parts/template.nix index 2035871..555e41e 100644 --- a/modules/flake-parts/template.nix +++ b/modules/flake-parts/template.nix @@ -9,8 +9,8 @@ filters = path: with inputs.nixpkgs.lib; { homeOnly = - hasInfix "configurations/home" path - || hasSuffix "activate-home.nix" path; + # NOTE: configurations/home/* is imported in nix-darwin and NixOS + hasSuffix "activate-home.nix" path; darwinOnly = hasInfix "configurations/darwin" path || hasInfix "modules/darwin" path;