Remove unused (server) configurations

This commit is contained in:
Fabian Hauser 2021-05-14 00:37:10 +02:00
parent b7c1db191d
commit 392687498c
20 changed files with 0 additions and 353 deletions

View file

@ -1,4 +0,0 @@
== Nextcloud Role
This role manages the nextcloud installation.

View file

@ -1,23 +0,0 @@
# Default configuration for hosts
{ config, lib, pkgs, ... }:
{
services.nextcloud = {
enable = true;
https = true;
webfinger = true;
maxUploadSize = "1G";
config = {
adminpassFile = "/secrets/nextcloud-admin"; # TODO
adminuser = "root";
dbtype = "pgsql";
dbhost = "/run/postgresql";
};
};
systemd.services."nextcloud-setup" = {
requires = [ "postgresql.service" ];
after = [ "postgresql.service" ];
};
}

View file

@ -1,10 +0,0 @@
{ config, lib, pkgs, ... }:
{
services.tt-rss = {
enable = true;
sessionCookieLifetime = 0;
database = { type = "pgsql"; };
};
}

View file

@ -1,5 +0,0 @@
{ config, lib, pkgs, ... }:
{
services.nginx = { logError = "stderr warn"; };
}