dotfiles/nixos/modules/fonts.nix

108 lines
1.9 KiB
Nix
Raw Normal View History

2025-01-08 01:05:45 -06:00
{
pkgs,
flake,
...
2025-01-18 03:50:54 -06:00
}:
let
inherit (flake.config.aesthetics.themes)
fonts
2025-01-08 19:06:14 -06:00
;
2025-01-18 03:50:54 -06:00
in
{
2024-10-06 15:25:05 -05:00
fonts = {
2024-12-19 19:56:45 -06:00
fontconfig = {
enable = true;
defaultFonts = {
2025-01-08 19:06:14 -06:00
serif = [
fonts.names.name0
2025-01-08 19:06:14 -06:00
];
monospace = [
fonts.names.name0
2025-01-08 19:06:14 -06:00
];
sansSerif = [
fonts.names.name0
2025-01-08 19:06:14 -06:00
];
2025-01-08 19:11:58 -06:00
emoji = [
"Noto Fonts Color Emoji"
];
2024-12-19 19:56:45 -06:00
};
antialias = true;
};
packages = builtins.attrValues {
2025-01-18 03:50:54 -06:00
inherit (pkgs)
noto-fonts-color-emoji
2025-01-14 16:17:42 -06:00
dosis
2025-01-14 19:40:12 -06:00
iosevka
2024-12-19 19:56:45 -06:00
;
2025-01-18 03:50:54 -06:00
inherit (pkgs.nerd-fonts)
_0xproto
_3270
agave
anonymice
arimo
aurulent-sans-mono
bigblue-terminal
bitstream-vera-sans-mono
blex-mono
caskaydia-cove
caskaydia-mono
code-new-roman
comic-shanns-mono
commit-mono
cousine
d2coding
daddy-time-mono
dejavu-sans-mono
departure-mono
droid-sans-mono
envy-code-r
2025-01-14 19:40:12 -06:00
fantasque-sans-mono
fira-code
fira-mono
geist-mono
go-mono
gohufont
hack
hasklug
heavy-data
hurmit
im-writing
inconsolata
inconsolata-go
inconsolata-lgc
intone-mono
iosevka-term
iosevka-term-slab
jetbrains-mono
lekton
liberation
lilex
martian-mono
monaspace
monofur
monoid
mononoki
mplus
noto
open-dyslexic
overpass
profont
proggy-clean-tt
recursive-mono
roboto-mono
sauce-code-pro
shure-tech-mono
space-mono
symbols-only
terminess-ttf
tinos
ubuntu
ubuntu-mono
ubuntu-sans
victor-mono
zed-mono
;
};
2024-10-06 15:25:05 -05:00
};
}