pinwheel: Add colors module to define common colors

This commit is contained in:
Alexander Heldt
2023-10-21 22:47:20 +02:00
parent 4a1a50d24f
commit ca1b71261d
6 changed files with 50 additions and 49 deletions

View File

@@ -1,5 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
home-manager.users.alex = {
services.dunst = {
@@ -13,7 +12,7 @@
offset = "10x50";
origin = "top-right";
transparency = 10;
frame_color = "#a57b06";
frame_color = "#${config.lib.colors.foreground-dim}";
font = "DejaVuSansM Nerd Font Mono 14";
};
@@ -24,8 +23,8 @@
};
urgency_normal = {
background = "#262626";
foreground = "#f9c22b";
background = "#${config.lib.colors.background}";
foreground = "#${config.lib.colors.foreground}";
timeout = 10;
};