about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-02-13 09:33:58 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2020-02-13 09:33:58 +0100
commit9290e6e7bab4fe27e0f2e9979565ce5f991bcc89 (patch)
tree83b2946d4dec556e77ef4562bb025fc3d361d1be /nixos
parent72bdf27771cde873090af3f303f5c1d7a485b0db (diff)
downloadnixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar.gz
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar.bz2
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar.lz
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar.xz
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.tar.zst
nixlib-9290e6e7bab4fe27e0f2e9979565ce5f991bcc89.zip
nixos/urxvtd: use new package name for rxvt-unicode
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/urxvtd.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/x11/urxvtd.nix b/nixos/modules/services/x11/urxvtd.nix
index 9bfcfa9b065d..867ac38a944f 100644
--- a/nixos/modules/services/x11/urxvtd.nix
+++ b/nixos/modules/services/x11/urxvtd.nix
@@ -18,10 +18,10 @@ in {
     };
 
     package = mkOption {
-      default = pkgs.rxvt_unicode-with-plugins;
-      defaultText = "pkgs.rxvt_unicode-with-plugins";
+      default = pkgs.rxvt-unicode;
+      defaultText = "pkgs.rxvt-unicode";
       description = ''
-        Package to install. Usually pkgs.rxvt_unicode-with-plugins or pkgs.rxvt_unicode
+        Package to install. Usually pkgs.rxvt-unicode.
       '';
       type = types.package;
     };