20 lines
480 B
Nix
20 lines
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;
|
||
|
};
|
||
|
}
|