Adding miniflux to kernighan

This commit is contained in:
Trevor Vallender 2023-09-27 16:38:33 +01:00
parent 74a3b26906
commit 1cb4dd1813
3 changed files with 25 additions and 5 deletions

View File

@ -8,6 +8,7 @@
./kernighan-hardware.nix
../shared/services/syncthing.nix
../shared/services/gitweb.nix
../shared/services/miniflux.nix
../shared/services/nginx.nix
];

View File

@ -0,0 +1,9 @@
{ config, pkgs, inputs, ... }:
{
services.miniflux = {
enable = true;
adminCredentialsFile = "/home/tsv/.miniflux_admin_credentials";
};
}

View File

@ -4,15 +4,20 @@
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
gitweb = {
enable = true;
virtualHost = "git.tsvallender.co.uk";
location = "/home/tsv/git";
};
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
virtualHosts."git.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
};
virtualHosts."syncthing.tsvallender.co.uk" = {
forceSSL = true;
@ -21,11 +26,16 @@
proxyPass = "http://127.0.0.1:8384";
};
};
virtualHosts."git.tsvallender.co.uk" = {
virtualHosts."feeds.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8080";
};
};
};
security.acme = {
acceptTerms = true;
defaults = {