refactor: extract shared user-base home-manager module

This commit is contained in:
2026-04-21 01:57:14 +02:00
parent 2572022349
commit 4bb3f44a37
2 changed files with 43 additions and 38 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, ... }:
let
homeModules = config.flake.modules.homeManager;
in
{
flake.modules.homeManager.userBase = {
imports = with homeModules; [
terminal
shell
neovim
sshClient
sopsAdmin
git
devTools
podman
gemini
];
};
}