Full Refactor and history reset
This commit is contained in:
37
fonts.nix
Normal file
37
fonts.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
fonts.enableDefaultPackages = true;
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.droid-sans-mono
|
||||
nerd-fonts.fira-code
|
||||
fira
|
||||
jetbrains-mono
|
||||
nerd-fonts.jetbrains-mono
|
||||
iosevka
|
||||
roboto
|
||||
inter
|
||||
source-code-pro
|
||||
source-sans-pro
|
||||
source-serif-pro
|
||||
inconsolata
|
||||
];
|
||||
|
||||
fonts.fontconfig = {
|
||||
antialias = true;
|
||||
cache32Bit = true;
|
||||
hinting.enable = true;
|
||||
hinting.autohint = true;
|
||||
subpixel.rgba = "rgb";
|
||||
defaultFonts = {
|
||||
monospace = [ "Source Code Pro" ];
|
||||
sansSerif = [ "Source Sans Pro" ];
|
||||
serif = [ "Source Serif Pro" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user