nixpkgs/overlays/dunst/default.nix
Daniel Siepmann 1f2b324435
Extend nixpkgs dunst systemd service
The service can not be enabled, as it doesn't contain the ``[Install]``.
The overlay patches that two lines to the service.

That's to my current knowledge.
2022-02-01 17:56:44 +01:00

8 lines
128 B
Nix

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