diff --git a/AGENTS.md b/AGENTS.md index f70d7a4..99e8c69 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,6 +24,7 @@ Instrucoes para agentes trabalhando neste repositorio. - Nao imprimir segredos, tokens ou chaves. - Prefira blocos Nix claros e agrupados por topico. - Ao adicionar servicos, habilite apenas o necessario. +- Faca mudancas pequenas e simples para evitar complexidade. ## Waybar (AC) - `configs/waybar/air_control.py` usa apenas stdlib (`urllib`) para falar com o Home Assistant. diff --git a/home/ltadeu6.nix b/home/ltadeu6.nix index 2b72869..e5439e8 100644 --- a/home/ltadeu6.nix +++ b/home/ltadeu6.nix @@ -371,8 +371,11 @@ fi ''; - systemd.user.services.openclaw-gateway.Service.EnvironmentFile = - "${config.home.homeDirectory}/.config/openclaw/gateway.env"; + systemd.user.services.openclaw-gateway = { + Service.EnvironmentFile = + "${config.home.homeDirectory}/.config/openclaw/gateway.env"; + Install.WantedBy = [ "default.target" ]; + }; home.file.".openclaw/openclaw.json".force = true;