home: replace dunst with mako

This commit is contained in:
notohh 2023-06-06 01:08:59 -04:00
parent 8a44463847
commit c42edd8b4d
Signed by: notohh
GPG key ID: BD47506D475EE86D
5 changed files with 22 additions and 37 deletions

View file

@ -7,13 +7,13 @@ name | description
`bat` | cat replacement
`direnv` | a shell extension, that loads environment variables in certain directories
`default` | used for commonly shared modules, for multiple home-manager configs
`dunst` | notification daemon
`git` | version control system
`gtk` | themes
`helix` | modal text editor
`lazygit` | terminal based git command system
`lf` | terminal based file manager
`librewolf` | a hardened firefox fork, and my browser of choice
`mako` | a lightweight wayland notification daemon
`neofetch` | fetch program
`nushell` | my shell of choice
`rofi` | application launcher

View file

@ -53,8 +53,8 @@
Host pihole
Hostname 192.168.1.221
User root
Host pve1
Hostname 192.168.1.36
Host pve
Hostname 192.168.1.37
User root
'';
};

View file

@ -1,27 +0,0 @@
{...}: {
global = {
frame_color = "#f5c2e7";
frame_width = "4";
separator_color = "frame";
height = "300";
width = "300";
min_icon_size = 32;
max_icon_size = 128;
origin = "top-right";
offset = "14x61";
font = "jost 10";
};
urgency_low = {
background = "#1E1E2E";
foreground = "#CDD6F4";
};
urgency_normal = {
background = "#1E1E2E";
foreground = "#CDD6F4";
};
urgency_critical = {
background = "#1E1E2E";
foreground = "#CDD6F4";
frame_color = "#FAB387";
};
}

View file

@ -1,7 +0,0 @@
{...}: {
services.dunst = {
enable = true;
waylandDisplay = "DP-2";
settings = ./config.nix;
};
}

19
home/mako/default.nix Normal file
View file

@ -0,0 +1,19 @@
{...}: {
services.mako = {
enable = true;
icons = true;
maxIconSize = 64;
maxVisible = 5;
defaultTimeout = 5000;
ignoreTimeout = true;
anchor = "top-right";
output = "DP-3";
font = "jost 10";
padding = "10";
margin = "18,22,0";
backgroundColor = "#1e1e2e";
textColor = "#cdd6f4";
borderColor = "#f5c2e7";
progressColor = "over #313244";
};
}