mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 16:08:45 +01:00
0879043b17
Seems to work so far and should let us have a cooler way to access the notification history.
13 lines
135 B
Nix
13 lines
135 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
inherit (pkgs) libnotify;
|
|
in
|
|
{
|
|
home.packages = [ libnotify ];
|
|
|
|
services.swaync = {
|
|
enable = true;
|
|
};
|
|
}
|