9 lines
254 B
Nix
9 lines
254 B
Nix
{ pkgs, config, ... }: {
|
|
services.cachix-watch-store = {
|
|
enable = true;
|
|
cacheName = "lelgenio";
|
|
cachixTokenFile = config.age.secrets.lelgenio-cachix.path;
|
|
};
|
|
systemd.services.cachix-watch-store-agent.serviceConfig.TimeoutStopSec = 3;
|
|
}
|