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

@@ -10,9 +10,7 @@ in
{ {
imports = with inputs.self.modules.homeManager; [ imports = with inputs.self.modules.homeManager; [
rebuild rebuild
zsh
john john
ssh
resticprofile resticprofile
sops sops
docker docker

View File

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

View File

@@ -1,10 +0,0 @@
{ inputs, pkgs, ... }:
{
flake.modules.homeManager.base = { pkgs, ... }:
{
imports = with inputs.self.modules.homeManager; [
git
shell-tools
];
};
}

View File

@@ -10,7 +10,7 @@
imports = with inputs.self.modules.homeManager; [ imports = with inputs.self.modules.homeManager; [
bash bash
# zsh zsh
# Tools # Tools
eza eza

View File

@@ -41,7 +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 ssh
shell-tools
git
]; ];
}; };
}; };