From 7e62493d21e23bcd4c0ff320aa3492d23acb062d Mon Sep 17 00:00:00 2001 From: harry123 Date: Thu, 23 Jan 2025 22:08:43 +0100 Subject: [PATCH] kinda confused on how to use irc server --- hosts/sisyphe/features/services/archivebox.nix | 6 ++++++ hosts/sisyphe/features/services/irc-server.nix | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 hosts/sisyphe/features/services/archivebox.nix diff --git a/hosts/sisyphe/features/services/archivebox.nix b/hosts/sisyphe/features/services/archivebox.nix new file mode 100644 index 0000000..d0685d3 --- /dev/null +++ b/hosts/sisyphe/features/services/archivebox.nix @@ -0,0 +1,6 @@ +{config, pkgs, ...}: +{ + environment.systemPackages = with pkgs; [ + archivebox + ]; +} diff --git a/hosts/sisyphe/features/services/irc-server.nix b/hosts/sisyphe/features/services/irc-server.nix index f69b01e..d193a33 100644 --- a/hosts/sisyphe/features/services/irc-server.nix +++ b/hosts/sisyphe/features/services/irc-server.nix @@ -8,5 +8,13 @@ description = "welcome to the silly kittens hut !! meow:3"; adminEmail = "admin@hypervirtual.world"; }; + + /**environment.etc = { + "ircd.conf" = { + text ='' + ''; + mode = "440"; + }; + };**/ }