mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
more akkoma customization
This commit is contained in:
parent
eba2a75276
commit
0545217233
2 changed files with 60 additions and 18 deletions
|
@ -1,51 +1,87 @@
|
|||
{pkgs, ...}:{
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
pleromaUrl = "eepy.rougebordeaux.xyz";
|
||||
pleromaMediaUrl = "blurb.rougebordeaux.xyz";
|
||||
theme = "fantasy-scroll-blossom";
|
||||
themeUrl = "https://plthemes.vulpes.one/themes/${theme}/${theme}.json";
|
||||
background = "";
|
||||
emojis = [ ];
|
||||
styles = ''
|
||||
{
|
||||
"pleroma-dark": [ "Pleroma Dark", "#121a24", "#182230", "#b9b9ba", "#d8a070", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
|
||||
"pleroma-light": [ "Pleroma Light", "#f2f4f6", "#dbe0e8", "#304055", "#f86f0f", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
|
||||
"classic-dark": [ "Classic Dark", "#161c20", "#282e32", "#b9b9b9", "#baaa9c", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
|
||||
"bird": [ "Bird", "#f8fafd", "#e6ecf0", "#14171a", "#0084b8", "#e0245e", "#17bf63", "#1b95e0", "#fab81e"],
|
||||
"ir-black": [ "Ir Black", "#000000", "#242422", "#b5b3aa", "#ff6c60", "#FF6C60", "#A8FF60", "#96CBFE", "#FFFFB6" ],
|
||||
"monokai": [ "Monokai", "#272822", "#383830", "#f8f8f2", "#f92672", "#F92672", "#a6e22e", "#66d9ef", "#f4bf75" ],
|
||||
|
||||
"redmond-xx": "/static/themes/redmond-xx.json",
|
||||
"redmond-xx-se": "/static/themes/redmond-xx-se.json",
|
||||
"redmond-xxi": "/static/themes/redmond-xxi.json",
|
||||
"breezy-dark": "/static/themes/breezy-dark.json",
|
||||
"breezy-light": "/static/themes/breezy-light.json",
|
||||
"mammal": "/static/themes/mammal.json",
|
||||
"${theme}": "/static/themes/${theme}.json"
|
||||
}
|
||||
'';
|
||||
akkoma-overlay = self: super: {
|
||||
akkoma = super.akkkoma.overrideAttrs (old: {
|
||||
postPatch = ''
|
||||
cp ${pkgs.writeText "styles.json" styles} $out/priv/static/themes
|
||||
cp ${./akkoma/terms-of-services.html} $out/priv/static/terms-of-service.html
|
||||
'';
|
||||
});
|
||||
};
|
||||
in
|
||||
{
|
||||
nixpkgs.overlays = [ akkoma-overlay ];
|
||||
services.akkoma.enable = true;
|
||||
services.akkoma.initDb.enable = true;
|
||||
services.akkoma.config = {
|
||||
":pleroma" = {
|
||||
":instance" = {
|
||||
name = "e^akkoma + 1 = 0";
|
||||
description = "the cuntiest french akkoma instance<3. centres d'intérêts : la mode, les sciences, la musique. mais ça ne vous empêche pas de parler de n'importe quoi! join us !";
|
||||
description = "the cuntiest french akkoma instance<3. on aime la mode, les sciences, et la musique. mais ça ne vous empêche pas de parler de n'importe quoi! join us ! par contre c'est 161 ici donc nofaf ou vs serez ban";
|
||||
email = "admin@babychou.me";
|
||||
registration_open = false;
|
||||
max_pinned_statuses = 1;
|
||||
max_pinned_statuses = 1;
|
||||
};
|
||||
"Pleroma.Web.Endpoint" = {
|
||||
http.ip = "127.0.0.1";
|
||||
http.port = 4000;
|
||||
url.host = "eepy.rougebordeaux.xyz";
|
||||
http.ip = "127.0.0.1";
|
||||
http.port = 4000;
|
||||
url.host = "${pleromaUrl}";
|
||||
};
|
||||
"Pleroma.Captcha.Kocaptcha" = {
|
||||
endpoint = "https://captcha.kotobank.ch";
|
||||
endpoint = "https://captcha.kotobank.ch";
|
||||
};
|
||||
"Pleroma.Upload" = {
|
||||
"Pleroma.Upload" = {
|
||||
base_url = "https://blurb.rougebordeaux.xyz/media";
|
||||
link_name = true;
|
||||
filters = map (pkgs.formats.elixirConf { }).lib.mkRaw [
|
||||
"Pleroma.Upload.Filter.Exiftool"
|
||||
"Pleroma.Upload.Filter.Dedupe"
|
||||
"Pleroma.Upload.Filter.AnonymizeFilename"
|
||||
link_name = true;
|
||||
filters = map (pkgs.formats.elixirConf { }).lib.mkRaw [
|
||||
"Pleroma.Upload.Filter.Exiftool"
|
||||
"Pleroma.Upload.Filter.Dedupe"
|
||||
"Pleroma.Upload.Filter.AnonymizeFilename"
|
||||
];
|
||||
};
|
||||
":configurable_from_database" = true;
|
||||
":configurable_from_database" = false;
|
||||
};
|
||||
};
|
||||
|
||||
services.caddy.virtualHosts."http://eepy.rougebordeaux.xyz".extraConfig = ''
|
||||
services.caddy.virtualHosts."${pleromaUrl}".extraConfig = ''
|
||||
log {
|
||||
output file /var/log/caddy/akkoma.log
|
||||
}
|
||||
|
||||
encode gzip
|
||||
encode zstd gzip
|
||||
|
||||
reverse_proxy 127.0.0.1:4000
|
||||
'';
|
||||
services.caddy.virtualHosts."http://blurb.rougebordeaux.xyz".extraConfig = ''
|
||||
services.caddy.virtualHosts."${pleromaMediaUrl}".extraConfig = ''
|
||||
log {
|
||||
output file /var/log/caddy/akkoma_media.log
|
||||
}
|
||||
|
||||
encode gzip
|
||||
encode zstd gzip
|
||||
|
||||
reverse_proxy 127.0.0.1:4000
|
||||
'';
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<p>Cette instance est hébergée en France. Tout contenu doit se conformer aux lois locales.</p>
|
||||
<ol>
|
||||
<li>Tout contenu raciste/sexiste/xenophobe/transphobe est banni. La première fois, vous êtes averti. La deuxième, vous dégagez!</li>
|
||||
<li></li>
|
||||
<li>Le nsfw est autorisé, cependant j'attends que vous mettiez les spoilers.</li>
|
||||
</ol>
|
Loading…
Add table
Add a link
Reference in a new issue