refactor: centralize host and user metadata

This commit is contained in:
2026-04-21 12:12:43 +02:00
parent 5cfd4d01c8
commit 6332c96d3e
33 changed files with 805 additions and 479 deletions
+11 -11
View File
@@ -3,17 +3,17 @@ let
homeModules = config.flake.modules.homeManager;
in
{
flake.modules.homeManager.userBase = {
imports = with homeModules; [
terminal
shell
neovim
sshClient
sopsAdmin
git
devTools
podman
gemini
flake.modules.homeManager."user-base" = {
imports = [
homeModules.terminal
homeModules.shell
homeModules.neovim
homeModules."ssh-client"
homeModules."sops-admin"
homeModules.git
homeModules."dev-tools"
homeModules.podman
homeModules.gemini
];
};
}