infra/modules/nixos/watch-store.nix
2023-05-31 10:05:55 +00:00

11 lines
260 B
Nix

{ config, ... }:
{
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;
};
}