diff options
author | sefidel <contact@sefidel.net> | 2022-02-21 20:48:34 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-21 20:48:34 +0900 |
commit | be90b80f52f4b56e6fc9dd4be9d233b9282ba912 (patch) | |
tree | 4a8c3424718a7642e842e17ecd773b7afcfe809a /nixos | |
parent | ef2ecc5cc661cb426d2e1efd2eff98f89410b376 (diff) | |
download | nixrc-be90b80f52f4b56e6fc9dd4be9d233b9282ba912.tar.gz nixrc-be90b80f52f4b56e6fc9dd4be9d233b9282ba912.zip |
chore: add ZNC chanfilter
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/beta/configuration.nix | 6 | ||||
-rw-r--r-- | nixos/default.nix | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nixos/beta/configuration.nix b/nixos/beta/configuration.nix index da3f484..6727898 100644 --- a/nixos/beta/configuration.nix +++ b/nixos/beta/configuration.nix @@ -26,7 +26,11 @@ enable = true; openFirewall = true; useLegacyConfig = false; - modulePackages = with pkgs.zncModules; [ clientbuffer playback ]; + modulePackages = with pkgs; [ + zncModules.clientbuffer + zncModules.playback + zncMiscModules.chanfilter + ]; config = { LoadModule = [ "webadmin" ]; diff --git a/nixos/default.nix b/nixos/default.nix index 9d65dfc..31d1a61 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -15,6 +15,7 @@ name = "beta"; system = "aarch64-linux"; nixpkgs = unstable-small; + overlays = with inputs; [ chaotic-nixpkgs.overlay ]; extraModules = [ ./modules/security.nix ]; |