28 lines
420 B
Nix
28 lines
420 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
fonts = {
|
||
|
packages = with pkgs; [
|
||
|
(nerdfonts.override {
|
||
|
fonts = [
|
||
|
"GoMono"
|
||
|
];
|
||
|
})
|
||
|
ipafont
|
||
|
noto-fonts-emoji
|
||
|
cantarell-fonts
|
||
|
newcomputermodern
|
||
|
];
|
||
|
|
||
|
fontconfig = {
|
||
|
enable = true;
|
||
|
cache32Bit = true;
|
||
|
subpixel.rgba = "rgb";
|
||
|
defaultFonts = {
|
||
|
monospace = [ "Go Mono Nerd Font" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|