From cad516bdbed6c4b07ce601ae7fc6c79680cf0c77 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Tue, 10 Feb 2026 13:07:22 +0100 Subject: [PATCH] fix: add options.nix to home-manager config modules --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 86763ad..ed49ab1 100644 --- a/flake.nix +++ b/flake.nix @@ -38,7 +38,7 @@ mkHomeConfig = name: modules: { "${name}" = home-manager.lib.homeManagerConfiguration { inherit pkgs; - inherit modules; + modules = modules ++ commonModules; extraSpecialArgs = { inherit inputs outputs; }; }; };