mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
32 lines
598 B
Nix
32 lines
598 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
config = {
|
||
|
|
||
|
home-manager.users.${config.user}.services.dunst = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
global = {
|
||
|
width = 300;
|
||
|
height = 200;
|
||
|
offset = "30x50";
|
||
|
origin = "top-right";
|
||
|
transparency = 0;
|
||
|
padding = 20;
|
||
|
horizontal_padding = 20;
|
||
|
frame_color = config.theme.colors.base03;
|
||
|
};
|
||
|
|
||
|
urgency_normal = {
|
||
|
background = config.theme.colors.base00;
|
||
|
foreground = config.theme.colors.base05;
|
||
|
timeout = 10;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|