.cargo/config.toml + aarch64-pkg-config wrapper are load-bearing for the cross build (CI artifact job + local build-cross.sh both depend on them); were gitignored before. souveraine.service is the systemd user unit the packaging/deploy scripts template.
14 lines
380 B
Desktop File
14 lines
380 B
Desktop File
# Souveraine server — systemd user unit.
|
|
# Install: cp to ~/.config/systemd/user/ && systemctl --user enable --now souveraine
|
|
# The quickshell surface starts this on demand when autostart is enabled.
|
|
[Unit]
|
|
Description=Souveraine server
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=%h/.local/bin/souveraine server
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=default.target
|