mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
12 lines
242 B
Nix
12 lines
242 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [ nextcloud29 ];
|
|
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud29;
|
|
hostName = "localhost:8081";
|
|
config.adminpassFile = "/etc/nextcloudpwd";
|
|
};
|
|
}
|