mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
48f7c42a21
Former-commit-id: 57867b1a22
13 lines
270 B
Nix
13 lines
270 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [ nextcloud29 ];
|
|
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud29;
|
|
hostName = "localhost";
|
|
config.adminpassFile = "/etc/nextcloudpwd";
|
|
settings = { port = 8080; };
|
|
};
|
|
}
|