mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
13 lines
381 B
Nix
13 lines
381 B
Nix
|
|
{ ... }:
|
||
|
|
{
|
||
|
|
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;
|
||
|
|
};
|
||
|
|
}
|