Add Pixelfed
This commit is contained in:
parent
d0a28fcb67
commit
88b230c46f
|
@ -50,7 +50,7 @@
|
||||||
# Federation
|
# Federation
|
||||||
./server/lemmy.nix
|
./server/lemmy.nix
|
||||||
./server/mastodon.nix
|
./server/mastodon.nix
|
||||||
#./server/pixelfed.nix
|
./server/pixelfed.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Set custom openssh port
|
# Set custom openssh port
|
||||||
|
|
|
@ -1,6 +1,31 @@
|
||||||
{outputs, ...}: {
|
{pkgs, outputs, ...}: {
|
||||||
services.pixelfed = {
|
services.pixelfed = {
|
||||||
enable = true;
|
enable = true;
|
||||||
domain = "pixelfed.${outputs.secrets.jimDomain}";
|
domain = "pics.${outputs.secrets.jimDomain}";
|
||||||
|
secretFile = pkgs.writeText "appkey" outputs.secrets.pixelfedKey;
|
||||||
|
settings = {
|
||||||
|
APP_NAME = "Jimbofed";
|
||||||
|
INSTANCE_DESCRIPTION = ''"The Jimbosfiles Pixelfed Instance"'';
|
||||||
|
INSTANCE_CONTACT_EMAIL = "jimbo@${outputs.secrets.jimDomain}";
|
||||||
|
OPEN_REGISTRATION = true;
|
||||||
|
APP_LOCALE = "en";
|
||||||
|
INSTANCE_DISCOVER_PUBLIC = false;
|
||||||
|
STORIES_ENABLED = true;
|
||||||
|
|
||||||
|
# Mail config
|
||||||
|
ENFORCE_EMAIL_VERIFICATION = true;
|
||||||
|
MAIL_FROM_ADDRESS = "noreply@${outputs.secrets.jimDomain}";
|
||||||
|
MAIL_FROM_NAME = ''"Jimbo's Pixelfed <noreply@${outputs.secrets.jimDomain}>"'';
|
||||||
|
MAIL_ENCRYPTION = "tls";
|
||||||
|
MAIL_DRIVER = "smtp";
|
||||||
|
MAIL_HOST = "mx.${outputs.secrets.jimDomain}";
|
||||||
|
MAIL_PORT = 587;
|
||||||
|
MAIL_USERNAME = "noreply@${outputs.secrets.jimDomain}";
|
||||||
|
MAIL_PASSWORD = "${outputs.secrets.noreplyPassword}";
|
||||||
|
};
|
||||||
|
nginx = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
BIN
secrets.nix
BIN
secrets.nix
Binary file not shown.
Loading…
Reference in a new issue