From 177babd49747e9037522b28c79adbb310518b710 Mon Sep 17 00:00:00 2001 From: reo101 Date: Sun, 27 Nov 2022 23:57:21 +0200 Subject: [PATCH] feat(flake): append missing modules Append missing modules for `nixos` and `home-manager` configs --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1af9c1f..f75d183 100644 --- a/flake.nix +++ b/flake.nix @@ -109,7 +109,7 @@ mkNixosHost = system: hostname: nixpkgs.lib.nixosSystem { modules = [ ./machines/nixos/${system}/${hostname}/configuration.nix - ]; + ] ++ (builtins.attrValues nixosModules); specialArgs = { inherit inputs outputs; @@ -162,7 +162,7 @@ pkgs = nixpkgs.legacyPackages.${system}; modules = [ ./machines/home-manager/${system}/${hostname}/home.nix - ]; + ] ++ (builtins.attrValues homeManagerModules); extraSpecialArgs = { inherit inputs outputs; }; };