moved imports
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
# ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -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; [
|
imports = with inputs.self.modules.homeManager; [
|
||||||
bash
|
bash
|
||||||
# zsh
|
zsh
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
eza
|
eza
|
||||||
|
|||||||
@@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user