mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 05:02:10 +00:00
40 lines
668 B
Nix
40 lines
668 B
Nix
{ config, ... }:
|
|
{
|
|
_module.args.theme = import ../lib/theme.nix { inherit config; };
|
|
|
|
imports = [
|
|
./agent-browser.nix
|
|
./bat.nix
|
|
./eza.nix
|
|
./claude.nix
|
|
./devin.nix
|
|
./xdg.nix
|
|
./security.nix
|
|
./codex.nix
|
|
./fzf.nix
|
|
./gcloud.nix
|
|
./gh.nix
|
|
./ghostty.nix
|
|
./git.nix
|
|
./k9s.nix
|
|
./lazygit.nix
|
|
./mise.nix
|
|
./migration.nix
|
|
./nvim.nix
|
|
./prompt.nix
|
|
./skills.nix
|
|
./scripts.nix
|
|
./ssh.nix
|
|
./tmux.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.stateVersion = "24.11";
|
|
programs.home-manager.enable = true;
|
|
xdg.enable = true;
|
|
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
}
|