mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
787dda981b
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.
13 lines
135 B
Nix
13 lines
135 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
inherit (pkgs) libnotify;
|
|
in
|
|
{
|
|
home.packages = [ libnotify ];
|
|
|
|
services.swaync = {
|
|
enable = true;
|
|
};
|
|
}
|