This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/services.nix

19 lines
480 B
Nix
Raw Normal View History

{
2023-06-25 22:18:07 +00:00
services = {
dunst = {
enable = true;
settings = {
global = {
width = 300;
height = 300;
offset = "30x50";
origin = "top-right";
notification_limit = 10;
progress_bar = true;
transparency = 20;
corner_radius = 8;
};
2023-06-21 08:11:21 +00:00
};
};
2023-06-25 22:18:07 +00:00
};
}