Adding dunst

This commit is contained in:
Miguel Palhas
2024-10-06 11:40:57 +01:00
parent adda4f9e06
commit 66c1527a6b
2 changed files with 7 additions and 4 deletions
@@ -19,7 +19,6 @@ in
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
catppuccin.enable = true;
settings = { settings = {
decoration = { decoration = {
blur = { blur = {
+7 -3
View File
@@ -1,7 +1,11 @@
{ pkgs, ... }:
{ {
programs.dunst = { pkgs,
...
}:
{
home.packages = with pkgs; [ libnotify ];
services.dunst = {
enable = true; enable = true;
catppuccin = true;
}; };
} }