mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
3554bf257e
Former-commit-id: 19af1ccdc2
9 lines
176 B
Nix
9 lines
176 B
Nix
{ pkgs, ... }: {
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud28;
|
|
hostName = "localhost";
|
|
config.adminpassFile = "/etc/nextcloudpwd";
|
|
};
|
|
}
|