10 lines
143 B
Nix
10 lines
143 B
Nix
|
{ ... }: {
|
||
|
services.nextcloud = {
|
||
|
enable = true;
|
||
|
https = true;
|
||
|
webfinger = true;
|
||
|
hostname = "cloud-test.graven.dev";
|
||
|
|
||
|
};
|
||
|
}
|