aboutsummaryrefslogtreecommitdiff
path: root/overlays/dwm/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 13:52:30 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 13:57:04 +0200
commit676e68e3394eeb07a02745d1cf191db9fee9e610 (patch)
tree973c57072eb9b784adab83fab8748d05a7ffc9c3 /overlays/dwm/default.nix
parent98de2045a749b25d031b174c940096b4f5406b9d (diff)
downloadNix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.gz
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.zst
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.zip
Use overlays for package overrides
Diffstat (limited to 'overlays/dwm/default.nix')
-rw-r--r--overlays/dwm/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/overlays/dwm/default.nix b/overlays/dwm/default.nix
new file mode 100644
index 0000000..96ed3ff
--- /dev/null
+++ b/overlays/dwm/default.nix
@@ -0,0 +1,7 @@
1self: super: {
2 dwm = super.dwm.overrideAttrs(old: rec {
3 postPatch = ''
4 cp ${./dwm_config.h} ./config.h
5 '';
6 });
7}