mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: use specialArgs instead for iceshrimp module; comment out DB for now
This commit is contained in:
parent
fb5097b0f5
commit
7b6df8e07d
1 changed files with 18 additions and 8 deletions
|
|
@ -1,12 +1,22 @@
|
||||||
{ ... }:
|
{ config, pkgs, iceshrimp, ... }:
|
||||||
{
|
{
|
||||||
services.iceshrimp = {
|
|
||||||
enable = true;
|
services = {
|
||||||
settings = {
|
# redis.servers.iceshrimp = {
|
||||||
url = "https://fedi.liv.town"; # The domain your Iceshrimp UI will be served on.
|
# enable = true;
|
||||||
settings.db.host = "/run/postgresql"; # omitting this setting causes some configurations to fail
|
# port = 6380;
|
||||||
|
# bind = "0.0.0.0";
|
||||||
|
# settings.protected-mode = "no";
|
||||||
|
# };
|
||||||
|
|
||||||
|
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;
|
||||||
};
|
};
|
||||||
dbPasswordFile = /var/iceshrimp/dbPasswordFile;
|
|
||||||
secretConfig = /var/iceshrimp/secretConfig.yml;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue