From 5e3a26e07b16458670bc7c93ec1d8d14367dc056 Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Wed, 15 Feb 2017 23:44:11 +0000 Subject: [PATCH] Fix typo introduced by #22677 --- nixos/modules/services/networking/quassel.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/quassel.nix b/nixos/modules/services/networking/quassel.nix index 9b06cccca79..bc7d6912b5c 100644 --- a/nixos/modules/services/networking/quassel.nix +++ b/nixos/modules/services/networking/quassel.nix @@ -25,12 +25,12 @@ in package = mkOption { type = types.package; - default = pkgs.quasselDaemon_qt5; - defaultText = "pkgs.quasselDaemon_qt5"; + default = pkgs.quasselDaemon; + defaultText = "pkgs.quasselDaemon"; description = '' The package of the quassel daemon. ''; - example = literalExample "pkgs.quasselDaemon_qt5"; + example = literalExample "pkgs.quasselDaemon"; }; interfaces = mkOption {