purge nextcloud

This commit is contained in:
Osman Faruk Bayram 2025-10-30 00:10:24 +03:00
parent 18627c078b
commit 7255df2d92
4 changed files with 0 additions and 28 deletions

View file

@ -4,7 +4,6 @@
./atticd.nix
./cloudflare-dyndns.nix
./cloudflared.nix
./nextcloud.nix
./ollama.nix
./openssh.nix
./forgejo.nix

View file

@ -1,25 +0,0 @@
{
lib,
config,
pkgs,
...
}:
{
config = lib.mkMerge [
(lib.mkIf config.osbmModules.services.nextcloud.enable {
environment.etc."nextcloud-admin-pass".text = "m7eJ4KJ1NK33JE%51";
services.nextcloud = {
enable = true;
package = pkgs.nextcloud31;
hostName = "localhost/nextcloud";
config.adminpassFile = "/etc/nextcloud-admin-pass";
config.dbtype = "sqlite";
database.createLocally = true;
settings.trusted_domains = [
"${config.networking.hostName}.curl-boga.ts.net"
"localhost"
];
};
})
];
}