Files
homelab/hosts/sin/trilium.nix
T
sin_serhao 95ddd2d8e9
analysis.yaml / perform flake analysis (push) Failing after 1m9s
deploy.yaml / build hive configuration (push) Failing after 30s
stable somewhat
2026-09-11 14:43:20 +02:00

16 lines
315 B
Nix

{ inputs, pkgs, ... }:
let
unstable = import inputs.unstable { system = pkgs.stdenv.system; };
in
{
services.trilium-server = {
enable = true;
package = unstable.trilium-server;
port = 12783;
host = "0.0.0.0";
# noAuthentication = true;
environmentFile = "/secrets/trilium.env";
};
}