Moved some files

This commit is contained in:
FredzyW 2024-06-17 17:53:23 +02:00
parent 2f94e9b5ff
commit 8a26dfc281
33 changed files with 25 additions and 42 deletions

24
shared/dunst/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ config
, pkgs
, ...
}: {
services.dunst = {
enable = true;
settings = {
global = {
width = 300;
height = 300;
offset = "30x50";
origin = "top-right";
transparency = 5;
frame_color = "#eceff1";
corner_radius = 10;
};
urgency_normal = {
background = "#181818";
foreground = "#dfdfdf";
timeout = 10;
};
};
};
}