43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Miniflux configuration
|
|
services.miniflux = {
|
|
enable = true;
|
|
adminCredentialsFile = "/var/keys/miniflux";
|
|
config = {
|
|
BASE_URL = "https://rss.coolneng.duckdns.org";
|
|
RUN_MIGRATIONS = "1";
|
|
DISABLE_HSTS = "1";
|
|
};
|
|
};
|
|
|
|
# Php-fpm pool for Wallabag
|
|
services.phpfpm.pools.wallabag = {
|
|
user = "nginx";
|
|
group = "nginx";
|
|
settings = {
|
|
"listen.owner" = config.services.nginx.user;
|
|
"listen.group" = config.services.nginx.group;
|
|
"listen.mode" = 600;
|
|
"pm" = "ondemand";
|
|
"pm.max_children " = 4;
|
|
"pm.max_requests" = 32;
|
|
"env[WALLABAG_DATA]" = "/var/lib/wallabag";
|
|
};
|
|
phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
|
|
};
|
|
|
|
# Set environment variable pointing to wallabag configuration directory
|
|
environment.variables.WALLABAG_DATA = "/var/lib/wallabag";
|
|
|
|
# Openbooks configuration
|
|
virtualisation.oci-containers.containers = {
|
|
openbooks = {
|
|
image = "evanbuss/openbooks";
|
|
ports = [ "127.0.0.1:9000:80" ];
|
|
extraOptions = [ "--label=io.containers.autoupdate=registry" ];
|
|
};
|
|
};
|
|
}
|