nixos-config/modules/services/iceshrimp.nix

13 lines
381 B
Nix
Raw Normal View History

2024-07-15 11:49:02 +02:00
{ ... }:
{
services.iceshrimp = {
enable = true;
settings = {
url = "https://fedi.liv.town"; # The domain your Iceshrimp UI will be served on.
settings.db.host = "/run/postgresql"; # omitting this setting causes some configurations to fail
};
dbPasswordFile = /var/iceshrimp/dbPasswordFile;
secretConfig = /var/iceshrimp/secretConfig.yml;
};
}