about summary refs log tree commit diff
path: root/nixos/modules/services/networking/quassel.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-07-05 16:53:42 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-07-05 16:53:42 -0700
commitc61d048427719d6e0c131f58825331df0a9d4ccc (patch)
tree84a01b7e466e4de3d17e01fb02e5e7e6d7392043 /nixos/modules/services/networking/quassel.nix
parent06f1e2c61e54e5eee3ff7d953cb4bb84a7de30e8 (diff)
downloadnixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar.gz
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar.bz2
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar.lz
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar.xz
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.tar.zst
nixlib-c61d048427719d6e0c131f58825331df0a9d4ccc.zip
nixos/quassel: Temporarily switch back to qt4 since qt5 tls in quassel is broken
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 005eb7bd7614..579d62884c78 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