diff --git a/custom/public/img/favicon.svg b/custom/public/img/favicon.svg new file mode 100644 index 0000000..24518a9 --- /dev/null +++ b/custom/public/img/favicon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/custom/public/img/logo.svg b/custom/public/img/logo.svg new file mode 100644 index 0000000..8b07c90 --- /dev/null +++ b/custom/public/img/logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/modules/forgejo.nix b/modules/forgejo.nix index 35ca7f9..f14b8d3 100644 --- a/modules/forgejo.nix +++ b/modules/forgejo.nix @@ -66,6 +66,7 @@ in services.forgejo = { enable = true; database.type = "postgres"; + customDir = ./custom; settings = { server = { @@ -91,6 +92,14 @@ in PASSWORD_COMPLEXITY = "lower,upper,digit,spec"; MIN_PASSWORD_LENGTH = 12; }; + "ui.meta" = { + AUTHOR = "Penal Colony"; + DESCRIPTION = "The apparatus inscribes your code. Every commit is judged."; + }; + "ui" = { + DEFAULT_THEME = "forgejo-auto"; + APP_NAME = "The Harrow"; + }; }; };