snowflake/hosts/tsuki/services/atticd.nix
notohh cb382d7f91
flake.nix: remove attic && add nixvim
sora: disable attic flake

tsuki: switch to attic-client
2024-10-26 22:01:29 -04:00

16 lines
363 B
Nix

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