Change requirements of the shepherd service
modules/homeassistant-service.scm
1 | - | ;;; SPDX-FileCopyrightText: 2024 Evgeny Pisemsky <mail@pisemsky.site> | |
1 | + | ;;; SPDX-FileCopyrightText: 2024, 2025 Evgeny Pisemsky <mail@pisemsky.site> | |
2 | 2 | ;;; | |
3 | 3 | ;;; SPDX-License-Identifier: GPL-3.0-or-later | |
4 | 4 | ||
… | |||
55 | 55 | (list (shepherd-service | |
56 | 56 | (documentation "Run the Home Assistant platform.") | |
57 | 57 | (provision '(homeassistant)) | |
58 | - | (requirement '(loopback)) | |
58 | + | (requirement '(user-processes networking)) | |
59 | 59 | (start #~(make-forkexec-constructor | |
60 | 60 | (list #$(file-append package "/bin/hass") | |
61 | 61 | "--config" #$homeassistant-config-dir |