From 920ea74afee92d321a4ff7dc714b165daaad78ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Wed, 17 Mar 2021 02:19:01 +0100 Subject: [PATCH] flake.nix: add nixosModule and darwinModule to outputs (#1858) --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 27987373..6dfc52be 100644 --- a/flake.nix +++ b/flake.nix @@ -3,8 +3,10 @@ outputs = { self, nixpkgs }: rec { nixosModules.home-manager = import ./nixos; + nixosModule = self.nixosModules.home-manager; darwinModules.home-manager = import ./nix-darwin; + darwinModule = self.darwinModules.home-manager; lib = { hm = import ./modules/lib { lib = nixpkgs.lib; };