From ae2d09475ff20f86e8060ffc044c20d36961b2d8 Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Tue, 9 Jul 2024 13:22:30 +0200 Subject: [PATCH] refactor mods --- home/configs/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/home/configs/default.nix b/home/configs/default.nix index 0fc5d9f..2fdff5f 100644 --- a/home/configs/default.nix +++ b/home/configs/default.nix @@ -7,12 +7,13 @@ toplevel@{ inputs, withSystem, config, ... }: let mods = config.flake.homeManagerModules; in - [ - mods.base - mods.shell - mods.util - mods.swayland - mods.web + with mods; [ + base + shell + util + swayland + web + work ]; }); }