From cbad8dc5ef5aa80544e069ade52e79ff46539978 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Sat, 1 Mar 2025 09:34:39 -0700 Subject: [PATCH] Add default home-manager module This keeps `homeManagerModules` in parallel with `darwinModules` and `nixosModules` --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b389c09..9384ee4 100644 --- a/flake.nix +++ b/flake.nix @@ -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;