2024-03-02 22:05:30 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-11 23:09:59 +02:00
|
|
|
home.file.".config/dunstrc".source = ./dunstrc;
|
|
|
|
|
|
|
|
systemd.user.services.dunst = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Dunst notification daemon";
|
2024-03-02 22:05:30 +01:00
|
|
|
After = ["graphical-session-pre.target"];
|
|
|
|
PartOf = ["graphical-session.target"];
|
2023-06-11 23:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "dbus";
|
|
|
|
BusName = "org.freedesktop.Notifications";
|
|
|
|
ExecStart = "${pkgs.dunst}/bin/dunst -config ~/.config/dunstrc";
|
|
|
|
};
|
|
|
|
|
2024-03-02 22:05:30 +01:00
|
|
|
Install = {WantedBy = ["graphical-session.target"];};
|
2023-06-11 23:09:59 +02:00
|
|
|
};
|
|
|
|
}
|