Remove unused (server) configurations
This commit is contained in:
parent
b7c1db191d
commit
392687498c
20 changed files with 0 additions and 353 deletions
|
@ -1,4 +0,0 @@
|
|||
== Nextcloud Role
|
||||
|
||||
This role manages the nextcloud installation.
|
||||
|
|
@ -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" ];
|
||||
};
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.tt-rss = {
|
||||
enable = true;
|
||||
sessionCookieLifetime = 0;
|
||||
|
||||
database = { type = "pgsql"; };
|
||||
};
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.nginx = { logError = "stderr warn"; };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue