diff options
author | tv <tv@krebsco.de> | 2016-02-14 16:43:44 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-02-14 16:43:44 +0100 |
commit | 673853e092c211e26a08030f87f9c868c6442a71 (patch) | |
tree | c71d2ac88a48cd74c37f03d1665e666030500d1d /tv/2configs/charybdis.nix | |
parent | 9f16d7ea71a2566b973ad0ac603c63ac3c6f4311 (diff) |
RIP specialArgs.lib
Diffstat (limited to 'tv/2configs/charybdis.nix')
-rw-r--r-- | tv/2configs/charybdis.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tv/2configs/charybdis.nix b/tv/2configs/charybdis.nix index f9ab3da68..eefb2810b 100644 --- a/tv/2configs/charybdis.nix +++ b/tv/2configs/charybdis.nix @@ -1,13 +1,12 @@ { config, lib, pkgs, ... }: -with builtins; -with lib; +with config.krebs.lib; let cfg = config.tv.charybdis; out = { options.tv.charybdis = api; - config = mkIf cfg.enable (mkMerge [ + config = lib.mkIf cfg.enable (lib.mkMerge [ imp { tv.iptables.input-retiolum-accept-new-tcp = [ 6667 6697 ]; } ]); |