nixpkgs/overlays/dunst/default.nix
Daniel Siepmann e16a01f3ac
Add dunst configuration via patch
Add a patch to alter the delivered configuration to my needs (e.g. color
scheme).

Also document configuration process in readme.
2022-02-01 18:25:43 +01:00

9 lines
151 B
Nix

self: super: {
dunst = super.dunst.overrideAttrs(oldAttrs: rec {
patches = [
./settings.patch
./systemd-service.patch
];
});
}