nixos/home-manager/packages/hyprland/dunst.nix
2025-04-17 13:36:35 -04:00

16 lines
241 B
Nix

{ ... }:
{
services.dunst = {
enable = true;
catppuccin.enable = true;
settings = {
global = {
offset = "10x10";
origin = "bottom-right";
width = 300;
height = 500;
};
};
};
}