mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
18 lines
492 B
Nix
18 lines
492 B
Nix
# Home Manager module aggregator
|
|
# This file imports all user-level configuration modules
|
|
{
|
|
imports = [
|
|
# Tool categories
|
|
./cli-tools.nix # Command-line utilities
|
|
./gui-apps.nix # GUI applications
|
|
./dev-tools.nix # Development tools and languages
|
|
|
|
# Program-specific configurations
|
|
./programs/gemini-cli.nix # Gemini AI CLI
|
|
|
|
# Core configurations
|
|
./git.nix # Git and GitHub configuration
|
|
./shell.nix # Shell environment (bash)
|
|
];
|
|
}
|