Home

infra @783af86e7a3b5c720bfbce6593a00308032ebb45 - refs - log -
-
https://git.jolheiser.com/infra.git
dragonwell flake
infra / dragonwell / pocket-id.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{ config, ... }:
{
  age.secrets.pocket-id.file = ../secrets/pocket-id.age;
  services.pocket-id = {
    enable = true;
    settings = {
      PUBLIC_APP_URL = "https://id.jolheiser.com";
      APP_NAME = "jolheiser ID";
      EMAILS_VERIFIED = true;
      PUBLIC_UI_CONFIG_DISABLED = true;
      HOST = "localhost";
    };
    environmentFile = config.age.secrets.pocket-id.path;
  };
}