about summary refs log tree commit diff
path: root/nixos/beta
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/beta')
-rw-r--r--nixos/beta/configuration.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/nixos/beta/configuration.nix b/nixos/beta/configuration.nix
index ec00aab..989e4fa 100644
--- a/nixos/beta/configuration.nix
+++ b/nixos/beta/configuration.nix
@@ -21,35 +21,6 @@
   services.openssh.enable = true;
   services.openssh.settings.PasswordAuthentication = false;
 
-  # Enable the ZNC IRC Bouncer.
-  services.znc = {
-    enable = true;
-    openFirewall = true;
-    useLegacyConfig = false;
-    modulePackages = with pkgs; [
-      zncModules.clientbuffer
-      zncModules.playback
-      zncMiscModules.chanfilter
-    ];
-
-    config = {
-      LoadModule = [ "webadmin" ];
-      User.zachel = {
-        Admin = true;
-        Nick = "zachel";
-        RealName = "zachel";
-        QuitMsg = "Bye: Quitting";
-        LoadModule = [ "chansaver" "controlpanel" ];
-        Pass.password = {
-          # xkcdpass, not exposed to public.
-          Method = "sha256";
-          Hash = "c263f7c1934a65c0b20a741cc09339c245279da574b2d47482c0a6ea9ba56d6f";
-          Salt = "PvDopS:MC3YLR-TTfb*:";
-        };
-      };
-    };
-  };
-
   # This value determines the NixOS release from which the default
   # settings for stateful data, like file locations and database versions
   # on your system were taken. It‘s perfectly fine and recommended to leave