about summary refs log tree commit diff
path: root/nixos/modules/services/networking/quassel.nix
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2016-04-12 12:05:03 +0300
committerEvgeny Egorochkin <phreedom@yandex.ru>2016-04-22 12:59:26 +0300
commita05ba7375d6b6f31b36d3cf36006bdcdadde06b7 (patch)
treec141c9719c5437523374a10cfd568a089adc91d3 /nixos/modules/services/networking/quassel.nix
parent71e0ce571b6fcd9a1a702c4198c9892b22b50fe7 (diff)
downloadnixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar.gz
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar.bz2
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar.lz
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar.xz
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.tar.zst
nixlib-a05ba7375d6b6f31b36d3cf36006bdcdadde06b7.zip
quassel: use qt4 version of the daemon because as of now qt5 version fails to use proxies(connection refused)
Diffstat (limited to 'nixos/modules/services/networking/quassel.nix')
-rw-r--r--nixos/modules/services/networking/quassel.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/quassel.nix b/nixos/modules/services/networking/quassel.nix
index 52c7ac8e6893..99269c49e8f1 100644
--- a/nixos/modules/services/networking/quassel.nix
+++ b/nixos/modules/services/networking/quassel.nix
@@ -3,7 +3,7 @@
 with lib;
 
 let
-  quassel = pkgs.quasselDaemon_qt5;
+  quassel = pkgs.kde4.quasselDaemon;
   cfg = config.services.quassel;
   user = if cfg.user != null then cfg.user else "quassel";
 in