flakes/nixos/system/desktop/fonts.nix
Chinmay D. Pai b14c62da0e
feat: migrate to new flake structure for modularity
coolcoolcool

Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-12-08 10:08:21 +05:30

30 lines
516 B
Nix

{pkgs, ...}: {
fonts = {
fontDir.enable = true;
packages = with pkgs; [
aileron
cantarell-fonts
corefonts
dejavu_fonts
dina-font
fira-code
fira-code-symbols
google-fonts
hack-font
ibm-plex
inconsolata
inter
iosevka
libertine
libre-baskerville
material-design-icons
mplus-outline-fonts.githubRelease
noto-fonts-cjk
powerline-fonts
proggyfonts
roboto
vistafonts
];
};
}