11 lines
260 B
Nix
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;
|
|
};
|
|
}
|