moved imports
This commit is contained in:
@@ -10,9 +10,7 @@ in
|
||||
{
|
||||
imports = with inputs.self.modules.homeManager; [
|
||||
rebuild
|
||||
zsh
|
||||
john
|
||||
ssh
|
||||
resticprofile
|
||||
sops
|
||||
docker
|
||||
|
||||
@@ -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
|
||||
# ];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
flake.modules.homeManager.base = { pkgs, ... }:
|
||||
{
|
||||
imports = with inputs.self.modules.homeManager; [
|
||||
git
|
||||
shell-tools
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
imports = with inputs.self.modules.homeManager; [
|
||||
bash
|
||||
# zsh
|
||||
zsh
|
||||
|
||||
# Tools
|
||||
eza
|
||||
|
||||
@@ -41,7 +41,9 @@ in
|
||||
programs.git.settings.user.email = email;
|
||||
|
||||
imports = with inputs.self.modules.homeManager; [
|
||||
base
|
||||
ssh
|
||||
shell-tools
|
||||
git
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user