mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
- P0-1: ProviderError type + ReportStatus for precise 401/403 detection - P0-2: Remove -config flag from deploy/homeagent.service - P2-1: 5s debounce on context.go Save() - P2-2→C1: Delete output_set_channel entirely - P2-3: Extract mediaDataURL/mediaChat helpers - P2-4: Dedup defaultSources var - P3: Delete dead packages (embed/tokenizer/container/snapshot) - P3: Delete dead functions (messagesToMap, RunStageAll) - CL: Update .gitignore, docs, Makefile, gojieba removal - Config: Delete config/config.yaml, update docs - Arch: Remove EmitOutputTo from emitResponse - CL-1: go.work 1.19→1.21 - Docs: Add Mermaid architecture diagrams to README - Docs: Add kernel-rebuild requires plugin-rebuild note to PLUGIN_DEV.md
34 lines
650 B
Desktop File
34 lines
650 B
Desktop File
[Unit]
|
|
Description=HomeAgent - Personal AI Home Assistant
|
|
Documentation=https://github.com/trueagent/HomeAgent
|
|
After=network-online.target docker.service
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/local/bin/homed -data /var/lib/homeagent
|
|
Restart=always
|
|
RestartSec=10
|
|
StartLimitBurst=3
|
|
StartLimitInterval=60s
|
|
|
|
# Security hardening
|
|
NoNewPrivileges=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
PrivateTmp=true
|
|
PrivateDevices=false
|
|
DevicePolicy=closed
|
|
# Audio devices
|
|
DeviceAllow=/dev/snd rw
|
|
DeviceAllow=/dev/dsp rw
|
|
|
|
# Resource limits
|
|
LimitNOFILE=65536
|
|
LimitNPROC=256
|
|
MemoryMax=2G
|
|
CPUQuota=100%
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|