18 lines
271 B
Nix
18 lines
271 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
monospace = [ "JetBrainsMono Nerd Font Mono" ];
|
|
};
|
|
};
|
|
|
|
packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.terminess-ttf
|
|
];
|
|
};
|
|
}
|