mealie
Example
nix
{config, ...}: {
mealie = {
enable = true;
oidc = {
enable = true;
clientSecretHash = "$pbkdf2-sha512$...";
clientSecretFile = config.sops.secrets."mealie/authelia/client_secret".path;
};
};
}Stack Options
nps.stacks.mealie.containers.mealie
Alias of {option}services.podman.containers.mealie.
nps.stacks.mealie.enable
Whether to enable mealie.
nps.stacks.mealie.oidc.adminGroup
Users of this group will be assigned admin rights
nps.stacks.mealie.oidc.clientSecretFile
The file containing the client secret for the OIDC client that will be registered in Authelia.
nps.stacks.mealie.oidc.clientSecretHash
The hashed client_secret. Will be set in the Authelia client config. For examples on how to generate a client secret, see
https://www.authelia.com/integration/openid-connect/frequently-asked-questions/#client-secret
nps.stacks.mealie.oidc.enable
Whether to enable OIDC login with Authelia. This will register an OIDC client in Authelia and setup the necessary configuration.
For details, see:
nps.stacks.mealie.oidc.userGroup
Users must be a part of this group to be able to log in.