Compare commits

..

No commits in common. "3b323ae595a13f5328206fa31d415c8d4c6eee9d" and "c8057ed52cffabade2e5433659248b100fadbac3" have entirely different histories.

3 changed files with 1 additions and 35 deletions

View file

@ -10,7 +10,7 @@ with lib; {
./net.nix
./mediawiki.nix
./jitsi.nix
# ./matrix.nix currently not being used
./matrix.nix
./forgejo.nix
./vaultwarden.nix
./bepasty.nix
@ -19,6 +19,5 @@ with lib; {
./kuma.nix
# ./authentik.nix consumes too much RAM and serves no purpose for now
./paperless.nix
./trilium.nix
];
}

View file

@ -39,7 +39,6 @@ with lib; {
useWizard = false;
settings = {
general.APP_NAME = "posixlycorrect";
ui.DEFAULT_THEME = "forgejo-dark";
server = {
DOMAIN = "git.posixlycorrect.com";
ROOT_URL = "https://git.posixlycorrect.com";

View file

@ -1,32 +0,0 @@
{
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";
};
};
};
}