mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
20 lines
535 B
Nix
20 lines
535 B
Nix
|
{ ... }: {
|
||
|
home-manager.users.jade = { pkgs, ... }: {
|
||
|
services.dunst = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
global = {
|
||
|
dmenu = "${pkgs.rofi}/bin/rofi -theme gruvbox-dark -dmenu -p dunst";
|
||
|
browser = "${pkgs.librewolf}/bin/librewolf";
|
||
|
mouse_left_click = "context";
|
||
|
mouse_middle_click = "close_current";
|
||
|
background = "#282828";
|
||
|
foreground = "#ebdbb2";
|
||
|
frame_color = "#504945";
|
||
|
frame_width = 2;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|