From a14ff9be4db45bbeda096dae961a9a5df5b9aa7b Mon Sep 17 00:00:00 2001 From: John Ogle Date: Tue, 13 Jan 2026 14:25:21 -0800 Subject: [PATCH] fix(flake): Remove duplicate home-manager imports from wixos and zix790prors The nixosModules list already includes inputs.home-manager.nixosModules.home-manager, so these individual configuration imports were redundant. --- flake.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/flake.nix b/flake.nix index e9c8f20..09d84c4 100644 --- a/flake.nix +++ b/flake.nix @@ -162,7 +162,6 @@ modules = nixosModules ++ [ nixos-wsl.nixosModules.default ./machines/wixos/configuration.nix - inputs.home-manager.nixosModules.home-manager { home-manager.users.johno = import ./home/home-desktop.nix; home-manager.extraSpecialArgs = { inherit system; }; @@ -174,7 +173,6 @@ system = "x86_64-linux"; modules = nixosModules ++ [ ./machines/zix790prors/configuration.nix - inputs.home-manager.nixosModules.home-manager { home-manager.users.johno = import ./home/home-desktop.nix; home-manager.extraSpecialArgs = { inherit system; };