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