parent
fb5d4d46f8
commit
6cb66d86d2
153 changed files with 2078 additions and 3094 deletions
23
modules/nixos/core/fonts.nix
Normal file
23
modules/nixos/core/fonts.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
nerdfonts
|
||||
ipafont
|
||||
noto-fonts-emoji
|
||||
cantarell-fonts
|
||||
newcomputermodern
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
cache32Bit = true;
|
||||
subpixel.rgba = "rgb";
|
||||
defaultFonts = {
|
||||
monospace = [ "Go Mono Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue