18 lines
319 B
Nix
18 lines
319 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.cli-base = {
|
|
imports = [
|
|
homeModules.terminal
|
|
homeModules.shell
|
|
homeModules.neovim
|
|
homeModules.git
|
|
homeModules.dev-tools
|
|
homeModules.podman
|
|
homeModules.ai
|
|
];
|
|
};
|
|
}
|