moved base import

This commit is contained in:
John Lancaster
2026-03-11 18:35:59 -05:00
parent c3e80bb91a
commit 30ffa5f234
2 changed files with 3 additions and 7 deletions

View File

@@ -26,9 +26,6 @@
homeManager."${username}" = { homeManager."${username}" = {
home.username = "${username}"; home.username = "${username}";
home.homeDirectory = "/home/${username}"; home.homeDirectory = "/home/${username}";
imports = with self.modules.homeManager; [
base
];
}; };
}; };
} }

View File

@@ -17,7 +17,7 @@ in
]; ];
}; };
modules = lib.mkMerge [ modules = lib.recursiveUpdate
(inputs.self.factory.user username true) (inputs.self.factory.user username true)
{ {
# #
@@ -41,10 +41,9 @@ in
programs.git.settings.user.email = email; programs.git.settings.user.email = email;
imports = with inputs.self.modules.homeManager; [ imports = with inputs.self.modules.homeManager; [
# base base
]; ];
}; };
} };
];
}; };
} }