Dwm: Difference between revisions

From NixOS Wiki
imported>Hypnosis2839
→‎Creating override: fix instructions to get SRI hash
imported>Hypnosis2839
→‎Creating override: simplify override
Line 16: Line 16:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
services.xserver.windowManager.dwm.package = pkgs.dwm.overrideAttrs (oldAttrs: rec {
services.xserver.windowManager.dwm.package = pkgs.dwm.override {
   patches = [
   patches = [
     # for local patch files, replace with relative path to patch file
     # for local patch files, replace with relative path to patch file
Line 29: Line 29:
     })
     })
   ];
   ];
})
}
</syntaxhighlight>
</syntaxhighlight>



Revision as of 17:24, 17 August 2023

dwm is a window manager made by the suckless team.

Installation

Enable dwm</dwm> in your system configuration:

services.xserver.windowManager.dwm.enable = true;


Creating override

To patch dwm, override services.xserver.windowManager.dwm.package as below:

services.xserver.windowManager.dwm.package = pkgs.dwm.override {
  patches = [
    # for local patch files, replace with relative path to patch file
    ./path/to/local.patch
    # for external patches
    (pkgs.fetchpatch {
      # replace with actual URL
      url = "https://dwm.suckless.org/patches/path/to/patch.diff";
      # replace hash with the value from `nix-prefetch-url "https://dwm.suckless.org/patches/path/to/patch.diff" | xargs nix hash to-sri --type sha256`
      # or just leave it blank, rebuild, and use the hash value from the error
      hash = "";
    })
  ];
}

See also

st

DMenu