diff --git a/hosts/rustboro/home.nix b/hosts/rustboro/home.nix index 1d51b461..6841cc11 100644 --- a/hosts/rustboro/home.nix +++ b/hosts/rustboro/home.nix @@ -5,13 +5,18 @@ lib, ... }: { - home-manager.users.aly = { - imports = [../../aly.nix]; - alyraffauf = { - services.easyeffects = { - enable = true; - preset = "LoudnessEqualizer.json"; - }; - }; + home-manager = { + sharedModules = [ + { + imports = [../../homeManagerModules]; + alyraffauf = { + services.easyeffects = { + enable = true; + preset = "LoudnessEqualizer.json"; + }; + }; + } + ]; + users.aly = import ../../aly.nix; }; }