20 lines
288 B
Nix
20 lines
288 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.userBase = {
|
|
imports = with homeModules; [
|
|
terminal
|
|
shell
|
|
neovim
|
|
sshClient
|
|
sopsAdmin
|
|
git
|
|
devTools
|
|
podman
|
|
gemini
|
|
];
|
|
};
|
|
}
|