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 | |
parent | ef2ecc5cc661cb426d2e1efd2eff98f89410b376 (diff) | |
download | nixrc-be90b80f52f4b56e6fc9dd4be9d233b9282ba912.tar.gz nixrc-be90b80f52f4b56e6fc9dd4be9d233b9282ba912.zip |
chore: add ZNC chanfilter
-rw-r--r-- | flake.lock | 12 | ||||
-rw-r--r-- | nixos/beta/configuration.nix | 6 | ||||
-rw-r--r-- | nixos/default.nix | 1 |
3 files changed, 12 insertions, 7 deletions
diff --git a/flake.lock b/flake.lock index dbc80ed..6965ad3 100644 --- a/flake.lock +++ b/flake.lock @@ -9,11 +9,11 @@ ] }, "locked": { - "lastModified": 1644471802, - "narHash": "sha256-OMGhvk5QnwdKMiflaig2xRrH0Dv3Ms1DXMDUOjSZ0Ms=", + "lastModified": 1645443965, + "narHash": "sha256-cCkv90luv21Mb+WxHiHnCTy7otCkArNdmRJ+T8Njp9U=", "ref": "main", - "rev": "ec91c0c2b57700398427fdc218bb3df2f448e9a6", - "revCount": 35, + "rev": "d9afdf0ac92d594819ec50830cc332d035c09a64", + "revCount": 36, "type": "git", "url": "https://git.sr.ht/~zachel/chaotic-nixpkgs" }, @@ -98,11 +98,11 @@ }, "locked": { "dir": "contrib", - "lastModified": 1645401765, + "lastModified": 1645443599, "narHash": "sha256-bTXjHYJpMneVCBAEN/qCYSi//3j0alrnVuQOp/XbgwY=", "owner": "neovim", "repo": "neovim", - "rev": "726ec7fb17aa8a86b1c2c9adc4c6abfcb350d3a7", + "rev": "fc7fc14bd2ab1090bd97d1836d3a472ad0ce4f97", "type": "github" }, "original": { 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 ]; |