From 9f8cc149efff5ebf6c9ef5d4a8bb0a835d51c442 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 21 Nov 2023 20:09:47 -0700 Subject: [PATCH] [NixOS] Add nextcloud to biskcomp --- nixos/machines/biskcomp.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index 678a74da..81aecabf 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -40,6 +40,15 @@ in defaults.email = "IvanMalison@gmail.com"; }; + services.nextcloud = { + enable = true; + hostName = "nextcloud.railbird.ai"; + config = { + dbtype = "pgsql"; + database.createLocally = true; + }; + }; + services.nginx = { enable = true; recommendedProxySettings = true;