Home

infra @4386d43aa397e2b725ffdfe4d0a06058bd6e011f - refs - log -
-
https://git.jolheiser.com/infra.git
dragonwell flake
infra / dragonwell / mealie.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{ config, ... }:
{
  age.secrets.mealie.file = ../secrets/mealie.age;
  services.mealie = {
    enable = true;
    listenAddress = "localhost";
    port = 3663;
    settings = {
      BASE_URL = "https://recipes.jolheiser.com";
      ALLOW_PASSWORD_LOGIN = false;
    };
    credentialsFile = config.age.secrets.mealie.path;
  };
}