GeistMono

This commit is contained in:
Matthieu Morin 2024-06-09 16:57:00 +00:00
parent 7e7650200e
commit 061c0fbc54
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ pkgs, ... }: {
# TODO add ttf-font-awesome or font-awesome for waybar
fontProfiles = {
enable = true;
monospace = {
family = "GeistMono Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "GeistMono" ]; };
};
regular = {
family = "Geist Mono";
package = pkgs.geist;
};
};
}