From 8c8e6dce20a6cd8215d58e74646c1205626cc3f4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 18 Jan 2024 14:59:11 +0000 Subject: [PATCH] add home-manager as a nixos module --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 50cbc6b..408f206 100644 --- a/flake.nix +++ b/flake.nix @@ -45,6 +45,12 @@ ./disko-config.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; + } ]; };