nextcloud: add samba client
This commit is contained in:
parent
468f033840
commit
9f16c6bf1b
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ pkgs, ... }: {
|
||||||
services.nextcloud = {
|
services.nextcloud = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoUpdateApps.enable = true;
|
autoUpdateApps.enable = true;
|
||||||
|
@ -7,6 +7,10 @@
|
||||||
nginx.enable = true;
|
nginx.enable = true;
|
||||||
hostName = "nextcloud.workhorse.private";
|
hostName = "nextcloud.workhorse.private";
|
||||||
logLevel = 0;
|
logLevel = 0;
|
||||||
config.extraTrustedDomains = [ "nextcloud.gaykraft.com" ];
|
config.extraTrustedDomains =
|
||||||
|
[ "nextcloud.ingolf-wagner.de" "nextcloud.gaykraft.com" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.smbclient ];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue