nixos-wsl/modules/fonts.nix
Sebastian Wendel 9f2899ff0c first commit
2024-09-09 22:08:49 +02:00

37 lines
602 B
Nix

{ pkgs, ... }:
{
fonts = {
fontDir.enable = true;
fontconfig.enable = true;
enableDefaultPackages = true;
packages = with pkgs;[
fira-code
fira-code-symbols
material-design-icons
material-symbols
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
roboto-mono
source-code-pro
twitter-color-emoji
(nerdfonts.override {
fonts = [
"JetBrainsMono"
"FiraCode"
"Hack"
"Meslo"
];
})
manrope
martian-mono
];
};
}