diff options
Diffstat (limited to '')
-rw-r--r-- | pkgs/dwm/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/dwm/default.nix b/pkgs/dwm/default.nix new file mode 100644 index 0000000..b6e02c6 --- /dev/null +++ b/pkgs/dwm/default.nix @@ -0,0 +1,10 @@ +{ pkgs ? import <nixpkgs> { } }: + +pkgs.dwm.overrideAttrs (old: rec { + postPatch = '' + cp ${./config.h} ./config.h + ''; + + patches = [ + ]; +}) |