about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/user/aszlig/services/i3/conky.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/modules/user/aszlig/services/i3/conky.nix b/modules/user/aszlig/services/i3/conky.nix
index b9e4c5ea..6c5815aa 100644
--- a/modules/user/aszlig/services/i3/conky.nix
+++ b/modules/user/aszlig/services/i3/conky.nix
@@ -50,16 +50,9 @@ let
   mkConky = args: let
     time = cexpr "time" [ "%a %b %d %T %Z %Y" ];
     text = concatStringsSep " | " (args ++ singleton time);
-    conky = (pkgs.conky.override {
+    conky = pkgs.conky.override {
       weatherMetarSupport = true;
-    }).overrideAttrs (drv: {
-      # This patch fixes a segfault when using "out_to_x = false":
-      patches = (drv.patches or []) ++ singleton (pkgs.fetchpatch {
-        url = "https://github.com/brndnmtthws/conky/commit/"
-            + "562c7375883445acb58388ff16d9eb126b7e12a1.patch";
-        sha256 = "0gjb6pw0c2va0z6p0fn6nxprkwq0kp5plfdv0la8mv91ds72mmi6";
-      });
-    });
+    };
   in pkgs.writeScript "conky-run.sh" ''
     #!${pkgs.stdenv.shell}
     PATH="${pkgs.coreutils}/bin"