purge nextcloud
This commit is contained in:
parent
18627c078b
commit
7255df2d92
4 changed files with 0 additions and 28 deletions
|
|
@ -7,7 +7,6 @@
|
|||
desktopEnvironment = "none";
|
||||
machineType = "server";
|
||||
services = {
|
||||
nextcloud.enable = true;
|
||||
hydra.enable = true;
|
||||
atticd.enable = true;
|
||||
cloudflared.enable = true;
|
||||
|
|
|
|||
|
|
@ -142,7 +142,6 @@
|
|||
anubis.enable = lib.mkEnableOption "anubis";
|
||||
syncthing.enable = lib.mkEnableOption "syncthing";
|
||||
jellyfin.enable = lib.mkEnableOption "jellyfin";
|
||||
nextcloud.enable = lib.mkEnableOption "nextcloud";
|
||||
vaultwarden.enable = lib.mkEnableOption "vaultwarden";
|
||||
nginx.enable = lib.mkEnableOption "nginx";
|
||||
ollama.enable = lib.mkEnableOption "ollama";
|
||||
|
|
|
|||
|
|
@ -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