Skip to content

Redmine

services.redmine.components.breezy

bazaar integration. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.cvs

cvs integration. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.ghostscript

Allows exporting Gant diagrams as PDF. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.git

git integration. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.imagemagick

Allows exporting Gant diagrams as PNG. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.mercurial

Mercurial integration. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.minimagick_font_path

MiniMagick font path Type: string

Default

""

Example

"/run/current-system/sw/share/X11/fonts/LiberationSans-Regular.ttf"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.components.subversion

Subversion integration. Type: boolean

Default

false

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.createLocally

Create the database and database user locally. Type: boolean

Default

true

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.host

Database host address. Type: string

Default

"localhost"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.name

Database name. Type: string

Default

"redmine"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.passwordFile

A file containing the password corresponding to {option}database.user.

Type: null or path

Default

null

Example

"/run/keys/redmine-dbpassword"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.port

Database host port. Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default

3306

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.socket

Path to the unix socket file to use for authentication. Type: null or path

Default

/run/mysqld/mysqld.sock

Example

"/run/mysqld/mysqld.sock"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.type

Database engine to use. Type: one of "mysql2", "postgresql", "sqlite3"

Default

"mysql2"

Example

"postgresql"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.database.user

Database user. Type: string

Default

"redmine"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.enable

Whether to enable Redmine, a project management web application. Type: boolean

Default

false

Example

true

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.extraEnv

Extra configuration in additional_environment.rb.

See https://svn.redmine.org/redmine/trunk/config/additional_environment.rb.example for details.

Type: strings concatenated with "\n"

Default

""

Example

'' config.logger.level = Logger::DEBUG''

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.group

Group under which Redmine is ran. Type: string

Default

"redmine"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.package

The redmine package to use. Type: package

Default

pkgs.redmine

Example

redmine.override { ruby = pkgs.ruby_3_2; }

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.plugins

Set of plugins. Type: attribute set of path

Default

{ }

Example

{redmine_env_auth = builtins.fetchurl {url = "https://github.com/Intera/redmine_env_auth/archive/0.6.zip";sha256 = "0yyr1yjd8gvvh832wdc8m3xfnhhxzk2pk3gm2psg5w9jdvd6skak";};}

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.port

Port on which Redmine is ran. Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)

Default

3000

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.settings

Redmine configuration ({file}configuration.yml). Refer to https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for details.

Type: YAML value

Default

{ }

Example

{email_delivery = {delivery_method = "smtp";smtp_settings = {address = "mail.example.com";port = 25;};};}

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.stateDir

The state directory, logs and plugins are stored here. Type: string

Default

"/var/lib/redmine"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.themes

Set of themes. Type: attribute set of path

Default

{ }

Example

{dkuk-redmine_alex_skin = builtins.fetchurl {url = "https://bitbucket.org/dkuk/redmine_alex_skin/get/1842ef675ef3.zip";sha256 = "0hrin9lzyi50k4w2bd2b30vrf1i4fi1c0gyas5801wn8i7kpm9yl";};}

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix

services.redmine.user

User under which Redmine is ran. Type: string

Default

"redmine"

Declared by: https://github.com/nixos/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix