From c5079d79091b0006905c465df75f47166671fe06 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 9 Mar 2025 19:11:34 +1100 Subject: [PATCH] system/home-manager: move imports into module and follow new name --- hosts/anemone/default.nix | 1 - hosts/hyacinth/default.nix | 1 - modules/system/home-manager.nix | 3 +++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hosts/anemone/default.nix b/hosts/anemone/default.nix index f7a47ae..e55e20d 100644 --- a/hosts/anemone/default.nix +++ b/hosts/anemone/default.nix @@ -9,7 +9,6 @@ }; imports = with modules.system; [ - inputs.home-manager.nixosModule home-manager audio diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index 9c2b274..9d1cddb 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -11,7 +11,6 @@ wpa_conf.file = ../../secrets/wpa_conf.age; }; imports = with modules.system; [ - inputs.home-manager.nixosModule home-manager aagl diff --git a/modules/system/home-manager.nix b/modules/system/home-manager.nix index 43bc0ac..3255e4d 100644 --- a/modules/system/home-manager.nix +++ b/modules/system/home-manager.nix @@ -1,4 +1,7 @@ { config, enableGUI, inputs, modules, ... }: { + imports = [ + inputs.home-manager.nixosModules.home-manager + ]; home-manager = { useGlobalPkgs = true; useUserPackages = true;