import fixes

This commit is contained in:
John Lancaster
2026-03-10 23:28:05 -05:00
parent f6d9ba27f0
commit 0af3e51ebf
2 changed files with 4 additions and 9 deletions

View File

@@ -22,11 +22,6 @@ in
{
# https://github.com/Doc-Steve/dendritic-design-with-flake-parts/wiki/Dendritic_Aspects#multi-context-aspect
nixos."${username}" = { pkgs, ... }: {
home-manager.users."${username}" = {
imports = [
inputs.self.modules.homeManager."${username}"
];
};
users.users."${username}" = {
isNormalUser = true;
openssh.authorizedKeys.keys = inputs.self.meta.users."${username}".authorizedKeys;
@@ -42,9 +37,7 @@ in
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
imports = with inputs.self.modules.homeManager; [
# base
# docker
# resticprofile
base
];
};
}