more shenanigans

This commit is contained in:
Kopatz
2024-06-03 23:06:56 +02:00
parent 1d410ace0b
commit 1226b41379
9 changed files with 294 additions and 45 deletions

26
home-manager/dunst.nix Normal file
View File

@@ -0,0 +1,26 @@
{ lib, osConfig, pkgs, ... }:
let enable = osConfig.custom.graphical.i3.enable || osConfig.custom.graphical.hyprland.enable;
in {
config = lib.mkIf enable {
services.dunst = {
enable = true;
settings = {
global = {
width = "(0,1000)";
height = "1000";
offset = "0x0";
origin = "bottom-center";
transparency = -1;
frame_color = "#1a1c1b";
font = lib.mkDefault "Monospace 8";
};
urgency_normal = {
background = lib.mkDefault "#1a1c1b";
foreground = lib.mkDefault "#eceff1";
timeout = 10;
};
};
};
};
}