feat: Add Opencode IDE with AI agents, Beads issue tracking, and STT/PTT

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
This commit is contained in:
2026-01-14 12:49:23 +01:00
parent 01df1f695b
commit 6be5e38021
40 changed files with 753 additions and 176 deletions

View File

@@ -0,0 +1,27 @@
{
config,
lib,
inputs,
...
}: {
imports = [
../common
./home.nix
];
wayland.windowManager.hyprland.settings = {
env = [
"WEBAPP_URL,http://192.168.152.98:4711/login/logistik-pick-master"
"WEBAPP_URL1,http://192.168.152.98:4711/login/logistik-pack-master"
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_SIZE,32"
"WLR_NO_HARDWARE_CURSORS,1"
];
exec-once = [
"start-browsers"
];
workspace = [
"1, monitor:HDMI-A-1, default:true"
"2, monitor:HDMI-A-2"
];
};
}

View File

@@ -99,9 +99,11 @@
programs.git = {
enable = true;
aliases = {
st = "status";
logd = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit";
settings = {
alias = {
st = "status";
logd = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit";
};
};
};
@@ -188,6 +190,32 @@
sensitivity = -0.5;
}
];
# windowrule = [
# ## HYPRLAND 0.53+ #
# # Floating dialogs
# "match:class file_progress, float on"
# "match:class confirm, float on"
# "match:class dialog, float on"
# "match:class download, float on"
# "match:class notification, float on"
# "match:class error, float on"
# "match:class splash, float on"
# "match:class confirmreset, float on"
# "match:title Open File, float on"
# "match:title branchdialog, float on"
# # XWayland border color
# "border_color rgb(ffffff), match:xwayland 1"
# # Chromium workspace 1
# "workspace 1, match:class chromium-browser"
# # Chromium tile rules
# "match:class ^(chromium)$, tile on"
# "match:class ^(Chromium)$, tile on"
# "match:class ^(chromium-browser)$, tile on"
# "match:class ^(Chromium-browser)$, tile on"
# ];
windowrule = [
"float, class:file_progress"
"float, class:confirm"