From 41e92331639f37e67d2769e71ffc60783c11f427 Mon Sep 17 00:00:00 2001
From: NullBite <me@nullbite.com>
Date: Mon, 1 Jan 2024 13:08:53 -0500
Subject: [PATCH] Add home.nix to hosts

---
 flake.nix | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index 9a13bcb..21393a9 100644
--- a/flake.nix
+++ b/flake.nix
@@ -40,6 +40,9 @@
           ./system/fragments/opengl.nix
           ./system/gaming.nix
           ./system/hyprland.nix
+          hmModule (hmModuleDefaults // {
+            home-manager.users."${username}" = import ./hosts/slab/home.nix;
+          })
         ];
       };
       nullbox = lib.nixosSystem {
@@ -52,7 +55,7 @@
           ./system/gaming.nix
 
           hmModule (hmModuleDefaults // {
-            home-manager.users."${username}" = import ./home.nix;
+            home-manager.users."${username}" = import ./hosts/nullbox/home.nix;
           })
 
         ];