From b15e9ec6769d770879759f086dd4e51fae7f2394 Mon Sep 17 00:00:00 2001 From: isabel Date: Sun, 16 Feb 2025 19:57:15 +0000 Subject: [PATCH] flake-module: set _class (#6461) This should *help* prevent bad imports. --- flake-module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake-module.nix b/flake-module.nix index 980fb31eb..59091dcde 100644 --- a/flake-module.nix +++ b/flake-module.nix @@ -18,6 +18,7 @@ in { type = types.lazyAttrsOf types.unspecified; default = { }; apply = mapAttrs (k: v: { + _class = "homeManager"; _file = "${toString moduleLocation}#homeManagerModules.${k}"; imports = [ v ]; });