about summary refs log tree commit diff
path: root/machines/profpatsch/pkgs.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-07-30 15:17:19 +0200
committerProfpatsch <mail@profpatsch.de>2016-07-30 15:17:19 +0200
commit52c05feb581ad535aa790591c37093f3a8817494 (patch)
tree34c5068b2f8df73ad8cfaca57aebe71eec9006f8 /machines/profpatsch/pkgs.nix
parentd20829102750c2e980abf67c58282174d9a1fd1f (diff)
machines/profpatsch: clean up folder
Diffstat (limited to 'machines/profpatsch/pkgs.nix')
-rw-r--r--machines/profpatsch/pkgs.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index 9a7e5a5a..c3c09297 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -30,16 +30,16 @@ let
       overrides = _: super: {
         taffybar = super.taffybar.overrideDerivation (old: {
           name = old.name + "foo";
-          patches = (old.patches or []) ++ [ ./taffybar.patch ];
+          patches = (old.patches or []) ++ [ ./patches/taffybar.patch ];
           postPatch = old.postPathPhase or "" + ''
-            patch -R ${./taffybar-color.patch}
+            patch -R ${./patches/taffybar-color.patch}
           '';
         });
       };
     }).ghcWithPackages;
   };
 
-  sent = pkgs.sent.override { patches = [ ./sent-bg.patch ]; };
+  sent = pkgs.sent.override { patches = [ ./patches/sent-bg.patch ]; };
 
   mpv = pkgs.mpv.override { scripts = [ pkgs.mpvScripts.convert ]; };