purge nextcloud
This commit is contained in:
parent
18627c078b
commit
7255df2d92
4 changed files with 0 additions and 28 deletions
|
|
@ -4,7 +4,6 @@
|
|||
./atticd.nix
|
||||
./cloudflare-dyndns.nix
|
||||
./cloudflared.nix
|
||||
./nextcloud.nix
|
||||
./ollama.nix
|
||||
./openssh.nix
|
||||
./forgejo.nix
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue