nix-config/users/tacocat/services/default.nix

34 lines
693 B
Nix
Raw Normal View History

2023-11-05 02:44:54 +00:00
{pkgs, ...}: {
2023-10-29 06:45:13 +00:00
services.gammastep = {
enable = true;
provider = "geoclue2";
2023-10-29 06:45:13 +00:00
tray = true;
};
services.dunst = {
enable = true;
iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
};
settings = {
global = {
2023-11-01 04:06:04 +00:00
# geometry = "1870x5-25+45";
2023-10-29 06:45:13 +00:00
width = 350;
separator_height = 5;
padding = 24;
horizontal_padding = 24;
frame_width = 3;
idle_threshold = 120;
alignment = "center";
word_wrap = "yes";
transparency = 5;
format = "<b>%s</b>: %b";
markup = "full";
min_icon_size = 32;
max_icon_size = 128;
};
};
};
}