From b236d913740eb8022ceee4e6ef66975cc263e931 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 19 May 2024 18:17:05 -0400 Subject: [PATCH] rustboro/home: use shared modules --- hosts/rustboro/home.nix | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) 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; }; }