Move monospace fonts into a theme

This commit is contained in:
Oliver Davies 2024-03-17 00:27:24 +00:00
parent 384da2a640
commit 5e5e46922c
4 changed files with 43 additions and 17 deletions

View file

@ -1,4 +1,14 @@
{
lib,
pkgs,
self,
...
}: let
inherit (lib) strings;
inherit (strings) toInt;
theme = import "${self}/lib/theme" {inherit pkgs;};
in {
programs.alacritty = {
enable = true;
@ -11,11 +21,10 @@
};
font = {
size = 12.0;
size = toInt "${theme.fonts.monospace.size}";
bold.style = "Regular";
normal.family = "GeistMono Nerd Font Mono";
# fc-list : family | sort | grep "Nerd Font"
normal.family = "${theme.fonts.monospace.name}";
offset.y = 12;
glyph_offset.y = 6;