move desktop shit again

This commit is contained in:
Schrottkatze 2025-03-27 20:28:36 +01:00
commit 500c18b76a
No known key found for this signature in database
41 changed files with 69 additions and 69 deletions

View file

@ -0,0 +1,21 @@
{pkgs, ...}: {
home.packages = [
pkgs.libnotify
];
services.dunst = {
enable = true;
settings = {
global = {
dmenu = "${pkgs.rofi}/bin/rofi -theme gruvbox-dark -dmenu -p dunst";
browser = "${pkgs.firefox}/bin/firefox";
mouse_left_click = "context";
mouse_middle_click = "close_current";
background = "#282828";
foreground = "#ebdbb2";
frame_color = "#504945";
frame_width = 2;
font = "Atkinson Hyperlegible";
};
};
};
}