feat: use specialArgs instead for iceshrimp module; comment out DB for now

This commit is contained in:
Ahwx 2024-07-15 13:45:58 +02:00
parent fb5097b0f5
commit 7b6df8e07d

View file

@ -1,6 +1,15 @@
{ ... }: { config, pkgs, iceshrimp, ... }:
{ {
services.iceshrimp = {
services = {
# redis.servers.iceshrimp = {
# enable = true;
# port = 6380;
# bind = "0.0.0.0";
# settings.protected-mode = "no";
# };
iceshrimp = {
enable = true; enable = true;
settings = { settings = {
url = "https://fedi.liv.town"; # The domain your Iceshrimp UI will be served on. url = "https://fedi.liv.town"; # The domain your Iceshrimp UI will be served on.
@ -9,4 +18,5 @@
dbPasswordFile = /var/iceshrimp/dbPasswordFile; dbPasswordFile = /var/iceshrimp/dbPasswordFile;
secretConfig = /var/iceshrimp/secretConfig.yml; secretConfig = /var/iceshrimp/secretConfig.yml;
}; };
};
} }