1
0
Fork 0

fix(nix): configure freshrss

This commit is contained in:
Lucas Sta Maria 2025-08-29 23:28:23 +08:00
parent 6089144711
commit 5e5da966f7
Signed by: lucas
GPG key ID: F07FB16A826E3B47
4 changed files with 20 additions and 0 deletions

View file

@ -106,6 +106,14 @@
'';
locations."/".proxyPass = "http://localhost:3000";
};
"localhost:8040" = {
listen = [
{
addr = "0.0.0.0";
port = 8040;
}
];
};
};
};
}

View file

@ -96,6 +96,16 @@
passwordFile = config.age.secrets.paperless-password.path;
};
services.freshrss = {
enable = true;
baseUrl = "http://localhost:8040";
virtualHost = "localhost:8040";
defaultUser = "admin";
passwordFile = config.age.secrets.freshrss-password.path;
database.type = "sqlite";
webserver = "nginx";
};
system.stateVersion = "23.11";
home-manager.users.priime = { pkgs, ... }: { imports = [ ./home.nix ]; };
}