Skip to content

komga

Example

nix
{config, ...}: {
  komga = {
    enable = true;

    oidc = {
      enable = true;
      clientSecretFile = config.sops.secrets."komga/authelia/client_secret".path;
      clientSecretHash = "$pbkdf2-sha512$...";
    };
  };
}

Stack Options

nps.stacks.komga.containers.komga

Alias of {option}services.podman.containers.komga.

Type
plaintext
submodule
Declaration

nps.stacks.komga.enable

Whether to enable komga.

Type
plaintext
boolean
Default
nix
false
Example
nix
true
Declaration

nps.stacks.komga.oidc.clientSecretFile

The file containing the client secret for the OIDC client that will be registered in Authelia.

Type
plaintext
string
Declaration

nps.stacks.komga.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

Type
plaintext
string
Declaration

nps.stacks.komga.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:

Type
plaintext
boolean
Default
nix
false
Declaration

nps.stacks.komga.oidc.userGroup

Users must be a part of this group to be able to log in.

Type
plaintext
string
Default
nix
"komga_user"
Declaration

nps.stacks.komga.settings

Additional settings that will be provided as the application.yml file.

See https://komga.org/docs/installation/configuration/

Type
plaintext
YAML 1.1 value
Default
nix
{ }
Declaration