snowflake/hosts/tsuki/services/atticd.nix

17 lines
349 B
Nix
Raw Normal View History

2024-01-05 14:43:55 -05:00
{pkgs, ...}: {
environment.systemPackages = [pkgs.attic];
systemd.services.atticd = {
enable = true;
wantedBy = ["multi-user.target"];
2024-01-05 14:43:55 -05:00
description = "atticd";
serviceConfig = {
User = "notoh";
ExecStart = "${pkgs.attic}/bin/attic watch-store kyasshu";
Restart = "always";
RestartSec = 30;
};
};
}