From 2f233bab422398cde4a25f44be59690fe418268b Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Sat, 3 Jan 2026 22:43:52 -0500 Subject: [PATCH] Trying out Lemmy. Yes I read the comment, actually need to upgrade the version else it won't compile --- .vscode/settings.json | 1 + nixos-apps/fancytypist.com.nix | 15 +++++++++------ server-config/configuration.nix | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8d7b269..d9f5fd8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -27,6 +27,7 @@ "jitsi", "jquery", "keymap", + "lemmy", "longview", "maths", "mdformat", diff --git a/nixos-apps/fancytypist.com.nix b/nixos-apps/fancytypist.com.nix index 7f409f7..eed7ebd 100644 --- a/nixos-apps/fancytypist.com.nix +++ b/nixos-apps/fancytypist.com.nix @@ -26,12 +26,6 @@ in { ''; }; - "helpme.fancytypist.ca" = { - extraConfig = '' - respond "Welcome to only other subdomain...helpme!" - ''; - }; - "osds.fancytypist.dev" = { serverAliases = ["osds.fancytypist.dev"]; extraConfig = '' @@ -55,4 +49,13 @@ in { ''; }; }; + + services.lemmy = { + enable = true; + settings = { + hostname = "helpme.fancytypist.ca"; + database.createLocally = true; + }; + caddy.enable = true; + }; } diff --git a/server-config/configuration.nix b/server-config/configuration.nix index 7ea12fa..54ab20f 100644 --- a/server-config/configuration.nix +++ b/server-config/configuration.nix @@ -139,5 +139,5 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "23.05"; # Did you read the comment? + system.stateVersion = "25.11"; # Did you read the comment? }