From d286c09746d2fb966ca9e2ff3f3f01ffccd61b95 Mon Sep 17 00:00:00 2001 From: Johannes Hendrik Gerard van der Weide Date: Wed, 3 Apr 2024 16:14:48 +0200 Subject: [PATCH] irc testing --- services/default.nix | 1 + services/inspircd.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 services/inspircd.nix diff --git a/services/default.nix b/services/default.nix index bbc5ec8..8fa267b 100644 --- a/services/default.nix +++ b/services/default.nix @@ -7,5 +7,6 @@ ./owncast.nix ./uptime-kuma.nix # ./iceshrimp.nix + ./inspircd.nix ]; } diff --git a/services/inspircd.nix b/services/inspircd.nix new file mode 100644 index 0000000..ae28ee6 --- /dev/null +++ b/services/inspircd.nix @@ -0,0 +1,10 @@ +{ + services.inspircd = { + enable = true; + config = '' + + nick="Hertog" email="hertog@fsfe.org"> + + ''; + }; +}