Add default home-manager module

This keeps `homeManagerModules` in parallel with `darwinModules` and `nixosModules`
This commit is contained in:
Nathan Henrie 2025-03-01 09:34:39 -07:00 committed by Jörg Thalheim
parent e653d71e82
commit cbad8dc5ef

View file

@ -66,7 +66,10 @@
sops = ./modules/sops;
default = self.nixosModules.sops;
};
homeManagerModules.sops = ./modules/home-manager/sops.nix;
homeManagerModules = {
sops = ./modules/home-manager/sops.nix;
default = self.homeManagerModules.sops;
};
homeManagerModule = self.homeManagerModules.sops;
darwinModules = {
sops = ./modules/nix-darwin;