mio-ops/profiles/tt-rss.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

# NixOps configuration for the hosts running Tiny Tiny RSS (TT-RSS)
{ config, pkgs, lib, ... }:
{
services.tt-rss = {
2021-11-16 04:57:23 +00:00
enable = true; # Enable TT-RSS
database = { # Configure the database
type = "pgsql"; # Database type
passwordFile = "/run/keys/tt-rss-dbpass"; # Where to find the password
};
email = {
2021-11-16 04:57:23 +00:00
fromAddress = "news@mcwhirter.io"; # Address for outgoing email
fromName = "News at mcwhirter.io"; # Display name for outgoing email
};
2021-11-16 04:57:23 +00:00
selfUrlPath = "https://news.mcwhirter.io/"; # Root web URL
virtualHost = "news.mcwhirter.io"; # Setup a virtualhost
};
services.postgresql = {
2021-11-16 04:57:23 +00:00
enable = true; # Ensure postgresql is enabled
authentication = ''
local tt_rss all ident map=tt_rss-users
'';
2021-11-16 04:57:23 +00:00
identMap = # Map the tt-rss user to postgresql
''
tt_rss-users tt_rss tt_rss
'';
2021-11-16 04:57:23 +00:00
ensureDatabases = [ "tt_rss" ]; # Ensure the database persists
ensureUsers = [{
name = "tt_rss"; # Ensure the database user persists
ensurePermissions = { # Ensure the database permissions persist
"DATABASE tt_rss" = "ALL PRIVILEGES";
"ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES";
};
}];
};
services.nginx = {
2021-11-16 04:57:23 +00:00
enable = true; # Enable Nginx
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
2021-11-16 04:57:23 +00:00
virtualHosts."news.mcwhirter.io" = { # TT-RSS hostname
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
};
};
2021-11-16 04:57:23 +00:00
security.acme.certs = { "news.mcwhirter.io".email = "craige@mcwhirter.io"; };
2021-11-16 04:57:23 +00:00
users.groups.keys.members = [ "tt_rss" ]; # Required due to NixOps issue #1204
2019-11-05 04:33:59 +00:00
}