summaryrefslogtreecommitdiff
path: root/modules/server/sops.nix
blob: 37dc96e1feaf0b6496a2418f00b9362f07cf72f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, ... }:
{
  sops = {
    defaultSopsFile = ../../secrets/${config.networking.hostName}.yaml;

    secrets = {
      "ghcr/user" = { };
      "ghcr/password" = { };
      tailscale_authentication_key = { };
      finnhub_token = { };
    };
  };
}