factor out do_append in prep for delta subcommands

This commit is contained in:
Qyriad 2026-02-02 13:42:07 +01:00
parent 8477c73067
commit 9ae0630db4
8 changed files with 237 additions and 56 deletions

15
dynamic.nix Normal file
View file

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