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
40 lines
720 B
Nix
40 lines
720 B
Nix
{
|
|
imports = [
|
|
# ./ad.nix
|
|
./mem0.nix
|
|
./n8n.nix
|
|
./sound.nix
|
|
./udev.nix
|
|
];
|
|
services = {
|
|
hypridle.enable = true;
|
|
printing.enable = true;
|
|
gvfs.enable = true;
|
|
gnome.gnome-keyring.enable = true;
|
|
qdrant = {
|
|
enable = true;
|
|
settings = {
|
|
service = {
|
|
host = "0.0.0.0";
|
|
};
|
|
};
|
|
};
|
|
upower.enable = true;
|
|
avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
publish = {
|
|
addresses = true;
|
|
workstation = true;
|
|
userServices = true;
|
|
};
|
|
};
|
|
asusd = {
|
|
enable = true;
|
|
enableUserService = true;
|
|
};
|
|
desktopManager.gnome.enable = true;
|
|
displayManager.gdm.enable = true;
|
|
};
|
|
}
|