nix-config/home/swaync.nix
Donovan Glover 0879043b17
meta: Replace dunst with swaync
Seems to work so far and should let us have a cooler way to access the
notification history.
2024-07-10 22:14:27 -04:00

13 lines
135 B
Nix

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