mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
13 lines
239 B
Nix
13 lines
239 B
Nix
{ config, ... }:
|
|
{
|
|
services.vikunja = {
|
|
enable = true;
|
|
port = 8011;
|
|
frontendScheme = "http";
|
|
frontendHostname = "vikunja.patrickcanal.it";
|
|
environmentFiles = [
|
|
config.sops.secrets.vikunja_env.path
|
|
];
|
|
};
|
|
}
|