Fix home priorities

This commit is contained in:
Greg Hellings
2022-04-20 03:10:08 +00:00
parent f94d23d191
commit 1434cc706c
2 changed files with 6 additions and 1 deletions
-1
View File
@@ -10,5 +10,4 @@ name: { pkgs, lib, ...}:
home.username = name;
home.homeDirectory = if name == "root" then "/root" else "/home/${name}";
home.packages = lib.mkForce [];
}
+6
View File
@@ -0,0 +1,6 @@
self: super:
{
git = super.git.override {
meta.priority = 4;
};
}