2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
font = pkgs.runCommandNoCC "font" { } ''
|
|
|
|
cp ${pkgs.nerdfonts.override { fonts = [ "Terminus" ]; }}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
|
|
|
|
'';
|
2024-05-04 23:15:57 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
colors = with config.module.style.color; {
|
|
|
|
background = "#${bg.dark}";
|
|
|
|
cursor = "#${fg.light}";
|
|
|
|
foreground = "#${fg.light}";
|
|
|
|
};
|
2024-05-04 23:15:57 +03:00
|
|
|
}
|