nixos-config/system/cachix.nix

9 lines
226 B
Nix
Raw Normal View History

2022-11-29 23:59:52 -03:00
{ pkgs, ... }: {
services.cachix-watch-store = {
enable = true;
cacheName = "lelgenio";
cachixTokenFile = "/etc/cachix-token";
};
2022-12-21 21:00:19 -03:00
systemd.services.cachix-watch-store-agent.serviceConfig.TimeoutStopSec = 3;
2022-11-29 23:59:52 -03:00
}