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