summaryrefslogtreecommitdiff
path: root/nix/modules/murmur.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-03-13 11:37:10 -0700
committerPreston Pan <ret2pop@gmail.com>2025-03-13 11:37:10 -0700
commit2a4c959ef00fea785633afe44be0af77d6441a4b (patch)
tree0cd6505ee3c3969effe2bafadf0620de6fd9e2cb /nix/modules/murmur.nix
parentba6373ebfbcafc99ce7a4fa100b2a26fc3bc2731 (diff)
new flake lock
Diffstat (limited to 'nix/modules/murmur.nix')
-rw-r--r--nix/modules/murmur.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/modules/murmur.nix b/nix/modules/murmur.nix
new file mode 100644
index 0000000..463ee1d
--- /dev/null
+++ b/nix/modules/murmur.nix
@@ -0,0 +1,12 @@
+{ lib, config, ... }:
+{
+ services.murmur = {
+ enable = lib.mkDefault config.monorepo.profiles.server.enable;
+ logFile = "/var/log/murmur.log";
+ openFirewall = true;
+ hostName = "talk.nullring.xyz";
+ welcometext = "Wecome to the Null Murmur instance!";
+ registerName = "nullring";
+ registerHostname = "talk.nullring.xyz";
+ };
+}