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
27 lines
757 B
Nix
27 lines
757 B
Nix
{config, ...}: {
|
|
virtualisation.oci-containers.containers."baserow" = {
|
|
image = "docker.io/baserow/baserow:2.0.6";
|
|
environmentFiles = [config.age.secrets.baserow-env.path];
|
|
ports = ["127.0.0.1:3032:80"];
|
|
volumes = ["baserow_data:/baserow/data"];
|
|
extraOptions = ["--add-host=postgres:10.89.0.1" "--ip=10.89.0.11" "--network=web"];
|
|
};
|
|
# Traefik configuration specific to baserow
|
|
services.traefik.dynamicConfigOptions.http = {
|
|
services.baserow.loadBalancer.servers = [
|
|
{
|
|
url = "http://localhost:3032/";
|
|
}
|
|
];
|
|
|
|
routers.baserow = {
|
|
rule = "Host(`db.i.az-intec.com`)";
|
|
tls = {
|
|
certResolver = "ionos";
|
|
};
|
|
service = "baserow";
|
|
entrypoints = "websecure";
|
|
};
|
|
};
|
|
}
|