infra/modules/nixos/watch-store.nix

12 lines
220 B
Nix
Raw Normal View History

2023-05-07 11:07:50 +10:00
{ config, ... }:
2023-04-12 08:25:46 +10:00
{
sops.secrets.watch-store-token = { };
2023-04-12 08:25:46 +10:00
services.cachix-watch-store = {
enable = true;
cacheName = "nix-community";
cachixTokenFile = config.sops.secrets.watch-store-token.path;
};
}