use newest freshrss
This commit is contained in:
parent
1c63a2a522
commit
1228a5ba04
1 changed files with 4 additions and 1 deletions
|
@ -2,12 +2,14 @@
|
|||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
system,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
domain = "news.cyplo.dev";
|
||||
in {
|
||||
imports = [../nginx.nix];
|
||||
disabledModules = ["services/web-apps/freshrss.nix"];
|
||||
imports = [../nginx.nix "${inputs.nixpkgs-nixos-unstable}/nixos/modules/services/web-apps/freshrss.nix"];
|
||||
|
||||
services.nginx.virtualHosts."${domain}" = {
|
||||
forceSSL = true;
|
||||
|
@ -19,6 +21,7 @@ in {
|
|||
};
|
||||
services.freshrss = {
|
||||
enable = true;
|
||||
package = inputs.nixpkgs-nixos-unstable.legacyPackages."${system}".freshrss;
|
||||
virtualHost = domain;
|
||||
baseUrl = "https://${domain}";
|
||||
database.type = "sqlite";
|
||||
|
|
Loading…
Reference in a new issue