nix/hosts/laptop/modules/fonts.nix

20 lines
No EOL
480 B
Nix

{ pkgs, ... }:
{
fonts = {
packages = with pkgs; [
symbola
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
fira-code
fira-code-symbols
jetbrains-mono
# Nerd fonts
(nerdfonts.override {
fonts = [ "FiraCode" "JetBrainsMono" ];
})
];
# Disable any fonts not defined above
enableDefaultPackages = false;
};
}