nixos/home-manager/packages/hyprland/dunst.nix

17 lines
241 B
Nix
Raw Normal View History

2024-08-02 16:51:16 -04:00
{ ... }:
{
services.dunst = {
enable = true;
catppuccin.enable = true;
settings = {
global = {
offset = "10x10";
origin = "bottom-right";
width = 300;
height = 500;
};
};
};
}