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
{
2023-11-21 09:33:18 +10:00
sops.secrets.cachix-auth-token = { };
2023-04-12 08:25:46 +10:00
services.cachix-watch-store = {
enable = true;
cacheName = "nix-community";
2023-11-21 09:33:18 +10:00
cachixTokenFile = config.sops.secrets.cachix-auth-token.path;
2023-04-12 08:25:46 +10:00
};
}