13 lines
197 B
Nix
13 lines
197 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
net = import ../data/network.nix;
|
|
in
|
|
{
|
|
services.vikunja = {
|
|
enable = true;
|
|
frontendHostname = "wekan";
|
|
frontendScheme = "http";
|
|
port = 8081;
|
|
};
|
|
}
|