mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
101cbd0761
Former-commit-id: 9177f93a96
13 lines
291 B
Nix
13 lines
291 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [ nextcloud29 ];
|
|
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud29;
|
|
hostName = "localhost";
|
|
config.adminpassFile = "/etc/nextcloudpwd";
|
|
settings = { overwritehost = "localhost:8080"; };
|
|
};
|
|
}
|