Rolledback to home version 22.05 to fix nvim, have to find a long term solution

This commit is contained in:
Luj 2023-01-06 10:16:15 +01:00
parent 4963b96f21
commit 155a7ae627

View file

@ -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;
};