Compare commits
3 commits
c8057ed52c
...
3b323ae595
Author | SHA1 | Date | |
---|---|---|---|
Fabian Montero | 3b323ae595 | ||
Fabian Montero | 5bd11b2bd4 | ||
Fabian Montero | 34b1a8e289 |
|
@ -10,7 +10,7 @@ with lib; {
|
||||||
./net.nix
|
./net.nix
|
||||||
./mediawiki.nix
|
./mediawiki.nix
|
||||||
./jitsi.nix
|
./jitsi.nix
|
||||||
./matrix.nix
|
# ./matrix.nix currently not being used
|
||||||
./forgejo.nix
|
./forgejo.nix
|
||||||
./vaultwarden.nix
|
./vaultwarden.nix
|
||||||
./bepasty.nix
|
./bepasty.nix
|
||||||
|
@ -19,5 +19,6 @@ with lib; {
|
||||||
./kuma.nix
|
./kuma.nix
|
||||||
# ./authentik.nix consumes too much RAM and serves no purpose for now
|
# ./authentik.nix consumes too much RAM and serves no purpose for now
|
||||||
./paperless.nix
|
./paperless.nix
|
||||||
|
./trilium.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,7 @@ with lib; {
|
||||||
useWizard = false;
|
useWizard = false;
|
||||||
settings = {
|
settings = {
|
||||||
general.APP_NAME = "posixlycorrect";
|
general.APP_NAME = "posixlycorrect";
|
||||||
|
ui.DEFAULT_THEME = "forgejo-dark";
|
||||||
server = {
|
server = {
|
||||||
DOMAIN = "git.posixlycorrect.com";
|
DOMAIN = "git.posixlycorrect.com";
|
||||||
ROOT_URL = "https://git.posixlycorrect.com";
|
ROOT_URL = "https://git.posixlycorrect.com";
|
||||||
|
|
32
sys/srv/trilium.nix
Normal file
32
sys/srv/trilium.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; {
|
||||||
|
services = {
|
||||||
|
nginx = {
|
||||||
|
virtualHosts."notes.posixlycorrect.com" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_headers_hash_max_size 512;
|
||||||
|
proxy_headers_hash_bucket_size 128;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
trilium-server = {
|
||||||
|
enable = true;
|
||||||
|
host = "127.0.0.1";
|
||||||
|
port = 8458;
|
||||||
|
noAuthentication = false;
|
||||||
|
instanceName = "posixlycorrect";
|
||||||
|
dataDir = "/var/lib/trilium";
|
||||||
|
nginx = {
|
||||||
|
enalbe = true;
|
||||||
|
hostName = "notes.posixlycorrect.com";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue