mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
11 lines
194 B
Nix
11 lines
194 B
Nix
{ config, ... }:
|
|
{
|
|
services.nextcould = {
|
|
enable = true;
|
|
hostName = "cloud.hypervirtual.world";
|
|
database.createLocally = true;
|
|
config = {
|
|
dbtype = "pgsql";
|
|
};
|
|
};
|
|
}
|