From e2642957ab2f41440e1e5b1239703bbacd243c76 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Fri, 6 Jan 2023 10:16:15 +0100 Subject: [PATCH] Rolledback to home version 22.05 to fix nvim, have to find a long term solution --- modules/hmgr/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/hmgr/default.nix b/modules/hmgr/default.nix index 0c9e32b..1935663 100644 --- a/modules/hmgr/default.nix +++ b/modules/hmgr/default.nix @@ -9,14 +9,15 @@ with lib; }; config = { + home-manager.useGlobalPkgs = true; home-manager.users = lib.mapAttrs (name: value: { - imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules))); + imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules))); home.username = "${name}"; home.homeDirectory = "/home/${name}"; - home.stateVersion = "21.11"; + home.stateVersion = "21.05"; } // value) cfg; };