import fixes

This commit is contained in:
John Lancaster
2026-03-10 23:50:59 -05:00
parent ce55bbc194
commit ed5cecd24d
5 changed files with 11 additions and 9 deletions

View File

@@ -15,11 +15,8 @@
"wheel"
];
};
# Import the corresponding homeManager module for the given username
home-manager.users."${username}" = {
imports = [
self.modules.homeManager.base
self.modules.homeManager."${username}"
];
};
@@ -28,6 +25,9 @@
homeManager."${username}" = {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
imports = with self.modules.homeManager; [
base
];
};
};
}