15 lines
302 B
Nix
15 lines
302 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.trilium-server = {
|
||
|
enable = true;
|
||
|
dataDir = "/srv/trilium";
|
||
|
instanceName = "chungus";
|
||
|
host = "10.23.42.28";
|
||
|
noAuthentication = true;
|
||
|
#nginx = {
|
||
|
# enable = true;
|
||
|
# hostName = "trilium.${config.networking.hostName}.private";
|
||
|
#};
|
||
|
};
|
||
|
}
|