1 # systemd unit to run orly as a service 2 [Unit] 3 Description=orly 4 5 [Service] 6 Type=simple 7 User=mleku 8 ExecStart=/home/mleku/.local/bin/orly 9 Restart=always 10 Wants=network-online.target 11 # waits for wireguard service to come up before starting, remove if running it directly on an 12 # internet routeable connection 13 After=network.target network-online.target wg-quick@wg0.service 14 15 [Install] 16 WantedBy=multi-user.target 17