mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 13:06:13 +01:00
10 lines
135 B
Nix
10 lines
135 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ libnotify ];
|
|
|
|
services.dunst = {
|
|
enable = true;
|
|
package = pkgs.dunst;
|
|
};
|
|
}
|