From 8b31b452fd708ad4a92fb67afe16dc803caa2484 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 23 Jan 2024 16:46:57 +0000 Subject: [PATCH] Add Home Manager to other systems --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/flake.nix b/flake.nix index 904afdb..4f005bd 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,12 @@ ./gnome.nix ./configuration.nix ./hardware-configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.aaronh = import ./home.nix; + } ]; }; @@ -48,6 +54,12 @@ ./thelio-nvidia.nix ./configuration.nix ./hardware-configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.aaronh = import ./home.nix; + } ]; };