From e3e859c14eb34bc045544ff64c3340b9f4dbe1f0 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 5 Sep 2021 18:38:13 +0200 Subject: brockman: 3.4.5 -> 4.0.1 --- krebs/5pkgs/haskell/brockman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'krebs') diff --git a/krebs/5pkgs/haskell/brockman/default.nix b/krebs/5pkgs/haskell/brockman/default.nix index ef9f3621..d3dbcd89 100644 --- a/krebs/5pkgs/haskell/brockman/default.nix +++ b/krebs/5pkgs/haskell/brockman/default.nix @@ -7,12 +7,12 @@ }: mkDerivation rec { pname = "brockman"; - version = "3.4.5"; + version = "4.0.1"; src = fetchFromGitHub { owner = "kmein"; repo = "brockman"; rev = version; - sha256 = "1q56ibgijcz6fgd60h0d1f2020l4n2i2nh98yaq95zhzwg0qsciy"; + sha256 = "0hppgban8hfyhn4c8qgm8j7ml6jaa35pjgrv3k3q27ln71wnr8rz"; }; isLibrary = false; isExecutable = true; -- cgit v1.2.3 From 87c758f629ce70addf40f0509b8a7856fe0f0da4 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 5 Sep 2021 21:27:30 +0200 Subject: puyak: add shackie reaktor irc bot --- krebs/1systems/puyak/config.nix | 3 +++ krebs/2configs/shack/reaktor.nix | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 krebs/2configs/shack/reaktor.nix (limited to 'krebs') diff --git a/krebs/1systems/puyak/config.nix b/krebs/1systems/puyak/config.nix index 2f122f6f..1dcf2030 100644 --- a/krebs/1systems/puyak/config.nix +++ b/krebs/1systems/puyak/config.nix @@ -115,6 +115,9 @@ ## Collect local statistics via collectd and send to collectd + + ## shackie irc bot + ]; krebs.build.host = config.krebs.hosts.puyak; diff --git a/krebs/2configs/shack/reaktor.nix b/krebs/2configs/shack/reaktor.nix new file mode 100644 index 00000000..40c12129 --- /dev/null +++ b/krebs/2configs/shack/reaktor.nix @@ -0,0 +1,19 @@ +{ config, lib, pkgs, ... }: +{ + krebs.reaktor2.shackie = { + hostname = "irc.libera.chat"; + port = "6697"; + nick = "shackie"; + API.listen = "inet://127.0.0.1:7777"; + plugins = [ + { + plugin = "register"; + config = { + channels = [ + "#shackspace" + ]; + }; + } + ]; + }; +} -- cgit v1.2.3 From 06e751c4bbbe4812d6b8c4cf0a964098a68e7b50 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 5 Sep 2021 21:28:13 +0200 Subject: puyak.r: remove legacy cryptoModules --- krebs/1systems/puyak/config.nix | 1 - 1 file changed, 1 deletion(-) (limited to 'krebs') diff --git a/krebs/1systems/puyak/config.nix b/krebs/1systems/puyak/config.nix index 1dcf2030..ce355998 100644 --- a/krebs/1systems/puyak/config.nix +++ b/krebs/1systems/puyak/config.nix @@ -127,7 +127,6 @@ loader.efi.canTouchEfiVariables = true; initrd.luks.devices.luksroot.device = "/dev/sda3"; - initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ]; initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; kernelModules = [ "kvm-intel" ]; -- cgit v1.2.3