nhms works again

This commit is contained in:
John Lancaster
2026-03-11 22:06:46 -05:00
parent b4d74f8a8d
commit cd14a37c8c
5 changed files with 34 additions and 43 deletions

View File

@@ -17,20 +17,12 @@
};
# https://github.com/Doc-Steve/dendritic-design-with-flake-parts/wiki/Dendritic_Aspects#multi-context-aspect
home-manager.users."${username}" = {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
imports = [
self.modules.homeManager."${username}"
# self.modules.homeManager.shell-tools
];
};
};
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
# ];
};
};
}