universedesktop: Basic DWL Configuration

This commit is contained in:
2024-05-05 10:05:50 -04:00
parent 29b0281c72
commit b075ed6888
5 changed files with 186 additions and 1 deletions

View File

@@ -2,4 +2,16 @@
imports = [
./wayland.nix
];
nixpkgs.overlays = [
(final: prev: {
dwl = prev.dwl.overrideAttrs (old: {
postPatch = ''
termcmd=${pkgs.foot}/bin/foot
menucmd=${pkgs.bemenu}/bin/bemenu
substituteAll ${./dwl/config.def.h} ./config.def.h
'';
});
})
];
}