Revert "Add mastodon"

This reverts commit b0cccd36a6.
This commit is contained in:
Oliver Davies 2025-04-29 00:30:05 +01:00
parent b0cccd36a6
commit 1ccd6cf3f4
3 changed files with 34 additions and 59 deletions

View file

@ -1,21 +1,14 @@
{ config, ... }:
{
security.acme =
let
email = "oliver@oliverdavies.uk";
in
{
security.acme = {
acceptTerms = true;
defaults = { inherit email; };
certs = {
"oliverdavies.uk" = {
inherit email;
domain = "oliverdavies.uk";
dnsProvider = "cloudflare";
email = "oliver@oliverdavies.uk";
environmentFile = config.age.secrets.cloudflare.path;
webroot = null;

View file

@ -2,7 +2,6 @@
imports = [
./homepage
./samba.nix
./mastodon.nix
./uptime-kuma.nix
];
}

View file

@ -1,17 +0,0 @@
{
services.mastodon = {
enable = true;
configureNginx = true;
localDomain = "social.oliverdavies.uk";
streamingProcesses = 3;
extraConfig = {
SINGLE_USER_MODE = "true";
};
smtp = {
fromAddress = "social@oliverdavies.uk";
};
};
}