From 42159eef9ae6b09f3db04c25b7f5b4bdd37a49f7 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Mon, 10 Mar 2025 09:33:22 -0300 Subject: [PATCH] feat: export worm homeManagerConfiguration --- flake.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index da09602..b483d17 100644 --- a/flake.nix +++ b/flake.nix @@ -92,6 +92,15 @@ }; homeConfigurations = { + "guz" = home-manager.lib.homeManagerConfiguration { + extraSpecialArgs = {inherit inputs self;}; + modules = [ + inputs.stylix.homeManagerModules.stylix + ./colors.nix + inputs.xremap.homeManagerModules.default + ./home/guz + ]; + }; "guz-lite" = home-manager.lib.homeManagerConfiguration { extraSpecialArgs = {inherit inputs self;}; modules = [ @@ -101,13 +110,10 @@ ./home/guz-lite ]; }; - "guz" = home-manager.lib.homeManagerConfiguration { + "worm" = home-manager.lib.homeManagerConfiguration { extraSpecialArgs = {inherit inputs self;}; modules = [ - inputs.stylix.homeManagerModules.stylix - ./colors.nix - inputs.xremap.homeManagerModules.default - ./home/guz + ./home/worm ]; }; };