cleanup and rename
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 30s

This commit is contained in:
Satria 2026-03-25 18:34:03 +07:00
commit ee28bb7c42
15 changed files with 71 additions and 73 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, rice, ... }: {
services.dunst = {
enable = true;
settings.global = {
font = "${rice.font} 8";
width = 300;
origin = "${if rice.bar.top then "top" else "bottom"}-right";
offset = "${toString rice.gap.outer}x${toString rice.gap.outer}";
corner_radius = rice.borders.rounded;
frame_width = rice.borders.size;
notification_limit = 0;
mouse_left_click = "close_current";
mouse_middle_click = "do_action";
mouse_right_click = "context";
};
};
home.packages = with pkgs; [
dunst
];
}