tsuki: update atticd service

This commit is contained in:
notohh 2025-02-26 00:36:44 -05:00
parent 25bb45a1a1
commit b30b226142
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: {
environment.systemPackages = [pkgs.attic-client];
systemd.services.atticd = {
@ -8,7 +12,7 @@
serviceConfig = {
User = "notoh";
ExecStart = "${pkgs.attic-client}/bin/attic watch-store kyasshu";
ExecStart = "${lib.getExe pkgs.attic-client} watch-store kyasshu";
Restart = "always";
RestartSec = 30;
};