From 1b598fb694d7a6e206a8f0b7d23de389537193bd Mon Sep 17 00:00:00 2001 From: misschloe777 Date: Wed, 6 Aug 2025 22:59:05 +0200 Subject: [PATCH] tried adding home-manager as a standalone config --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index cb6b639..c36b09a 100644 --- a/flake.nix +++ b/flake.nix @@ -243,6 +243,11 @@ packages.miku-cursor-linux = pkgs.callPackage ./packages/miku-cursor.nix { }; packages.fourget = pkgs.callPackage ./packages/4get.nix { }; - }; + homeManager = home-manager.lib.homeManagerConfiguration { + pkgs = import nixpkgs {}; + modules = [./home-manager/home.nix]; + extraSpecialArgs = specialArgs; + }; + }; }