support - Integrate Opencode terminal IDE with MCP integrations (Ref, Exa, Outline) - Add Beads AI-native issue tracking system (.beads/ + AGENTS.md) - Implement STT/PTT (speech-to-text push-to-talk) with whisper-cpp-vulkan - Add coding feature module with dev tools (beads, alejandra, bun, devpod, nixd) - Create AZPILOGISTIKTEST host configuration - Refactor Hyprland windowrules to new match: syntax - Upgrade nixpkgs/home-manager from 25.05 to 25.11 - Update Ollama to use Vulkan acceleration - Add lmstudio, rofi-project-opener, and various app updates - Add outline-key secret and mem0 service configuration chore: Add Opencode IDE, Beads issue tracking, STT/PTT, and nixpkgs 25.11 upgrade
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{config, ...}: {
|
|
imports = [
|
|
./home.nix
|
|
../common
|
|
../features/cli/fish.nix
|
|
../features/cli/fzf.nix
|
|
../features/cli/nushell.nix
|
|
../features/cli/starship.nix
|
|
];
|
|
|
|
programs.carapace = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
|
|
programs.bat = {enable = true;};
|
|
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
nix-direnv.enable =
|
|
true;
|
|
};
|
|
|
|
programs.eza = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
enableBashIntegration = true;
|
|
extraOptions = ["-l" "--icons" "--git" "-a"];
|
|
};
|
|
|
|
programs.lf = {
|
|
enable = true;
|
|
settings = {
|
|
preview = true;
|
|
drawbox = true;
|
|
hidden = true;
|
|
icons = true;
|
|
theme = "Dracula";
|
|
previewer = "bat";
|
|
};
|
|
};
|
|
features = {
|
|
cli = {
|
|
fish.enable = true;
|
|
nushell.enable = true;
|
|
fzf.enable = true;
|
|
starship.enable = true;
|
|
};
|
|
};
|
|
coding.editors.neovim.enable = true;
|
|
}
|