dunst: add testbed (#1781)

Link: https://github.com/nix-community/stylix/pull/1781

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
awwpotato 2025-07-28 03:20:18 -07:00 committed by GitHub
parent a6cf775997
commit d65c5d8300
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,11 @@
{ lib, ... }:
{
stylix.testbed.ui = {
graphicalEnvironment = "hyprland";
sendNotifications = true;
};
home-manager.sharedModules = lib.singleton {
services.dunst.enable = true;
};
}