18 lines
358 B
Nix
18 lines
358 B
Nix
{ config, pkgs, lib, ... }: {
|
|
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
|
|
'';
|
|
});
|
|
})
|
|
];
|
|
}
|