nix-config/home/swaync.nix
Donovan Glover 787dda981b
Reapply "meta: Replace dunst with swaync"
Might be able to use swaync after all if I avoid using the mpris module
with it. This has the advantage of being supported by ironbar, which
would make missing notifications less likely.
2024-07-18 13:30:20 -04:00

13 lines
135 B
Nix

{ pkgs, ... }:
let
inherit (pkgs) libnotify;
in
{
home.packages = [ libnotify ];
services.swaync = {
enable = true;
};
}