moved imports

This commit is contained in:
John Lancaster
2026-03-11 18:50:16 -05:00
parent 30ffa5f234
commit 9a8f98d4fe
5 changed files with 9 additions and 14 deletions

View File

@@ -19,6 +19,7 @@
home-manager.users."${username}" = {
imports = [
self.modules.homeManager."${username}"
# self.modules.homeManager.shell-tools
];
};
};
@@ -26,6 +27,10 @@
homeManager."${username}" = {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
# TODO: This doesn't get merged properly when the factory gets used
# imports = with self.modules.homeManager; [
# shell-tools
# ];
};
};
}