infra/modules/nixos/watch-store.nix
zowoq 2a72d56e9a refactor cachix secrets
each of these are only used on single host so they don't need to be shared
2023-11-16 21:29:45 +00:00

11 lines
220 B
Nix

{ config, ... }:
{
sops.secrets.watch-store-token = { };
services.cachix-watch-store = {
enable = true;
cacheName = "nix-community";
cachixTokenFile = config.sops.secrets.watch-store-token.path;
};
}