mako theming 1

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-04-10 19:19:33 +02:00
parent c751220c33
commit 111b46f442
5 changed files with 64 additions and 34 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, rice, ... }:
{
home.packages = [
@@ -7,6 +7,10 @@
];
services.mako = {
enable = true;
defaultTimeout = 60000;
defaultTimeout = 5;
backgroundColor = "#${rice.color.background}";
textColor = "#${rice.color.foreground}";
borderColor = "#${rice.color.border}";
font = "#${rice.font.code.name}";
};
}