infra/modules/nixos/watch-store.nix

12 lines
260 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.sopsFile = ./nix-community-cache/secrets.yaml;
services.cachix-watch-store = {
enable = true;
cacheName = "nix-community";
cachixTokenFile = config.sops.secrets.watch-store-token.path;
};
}