WIP: new service Nextcloud

This commit is contained in:
pazpi 2024-11-06 12:06:04 +01:00
parent 16e06f1737
commit 191119d1f1
8 changed files with 223 additions and 28 deletions

View file

@ -16,12 +16,24 @@ in
my = {
utils.commons.enable = true;
services.media-mgr = {
proxy = {
enable = true;
domain = "tegola.pro";
host = "arr.internal";
services = {
media-mgr = {
proxy = {
enable = true;
domain = "tegola.pro";
host = "arr.internal";
};
};
nextcloud = {
proxy = {
enable = true;
domain = "tegola.pro";
host = "nextcloud.internal";
};
};
};
monitoring = {

View file

@ -0,0 +1,34 @@
{
config,
pkgs,
lib,
...
}:
{
my = {
utils.commons.enable = true;
services.nextcloud = {
enable = true;
proxy.domain = "tegola.pro";
};
virtualisation.proxmox.enable = true;
};
time.timeZone = "Europe/Rome";
# Extra packages
environment.systemPackages = with pkgs; [ ];
services = {
openssh.enable = true;
};
networking = {
firewall.allowedTCPPorts = [ 80 ];
nameservers = [ "192.168.1.2" ];
};
system.stateVersion = "24.05";
}