summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-07-30 21:24:11 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-07-30 21:24:11 -0500
commite5a93ab20104430d6a900980c0b6653bb6ccc9a5 (patch)
tree383e670ac0e6b4d324a9815a05c1d23319d4cabc /nixos/modules
parent058f36aae7053dcbf4e2f06303b599e208863f3d (diff)
downloadnixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar.gz
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar.bz2
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar.lz
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar.xz
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.tar.zst
nixlib-e5a93ab20104430d6a900980c0b6653bb6ccc9a5.zip
Revert "nixos/quassel: Temporarily switch back to qt4 since qt5 tls in quassel is broken"
This reverts commit c61d048427719d6e0c131f58825331df0a9d4ccc.
Diffstat (limited to 'nixos/modules')
-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 579d62884c78..005eb7bd7614 100644
--- a/nixos/modules/services/networking/quassel.nix
+++ b/nixos/modules/services/networking/quassel.nix
@@ -3,7 +3,7 @@
 with lib;
 
 let
-  quassel = pkgs.kde4.quasselDaemon;
+  quassel = pkgs.quasselDaemon_qt5;
   cfg = config.services.quassel;
   user = if cfg.user != null then cfg.user else "quassel";
 in