From 12566edfda699730e3e28fb97077dfed8b3e8844 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 8 Feb 2022 16:24:28 -0800 Subject: home-manager: fix initial configuration This configuration is working, and I'm still unclear of how this is supposed to be done correctly. Might need to iterate a few more times. --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 5c5f782..2accd12 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,15 @@ ./users/fcuny ./modules/systems ./modules/desktop + home-manager.nixosModules.home-manager { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.fcuny = { + imports = [ + ./users/fcuny/home-manager.nix + ]; + }; + } ]; }; }; -- cgit 1.4.1