dynix/dynamic.nix

15 lines
243 B
Nix

# Managed by dynix.
{ lib, ... }:
lib.mkMerge [
{
services.gotosocial = {
enable = true;
setupPostgresqlDB = true;
settings = {
application-name = "example!";
host = "yuki.local";
};
};
}
]