Migrate to snowfall lib
This commit is contained in:
31
modules/nixos/system/fonts/default.nix
Normal file
31
modules/nixos/system/fonts/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
fonts = {
|
||||
enableDefaultPackages = false;
|
||||
fontDir.enable = true;
|
||||
#fonts = with pkgs; [
|
||||
packages = with pkgs; [
|
||||
ibm-plex
|
||||
lmmath
|
||||
openmoji-color
|
||||
material-design-icons
|
||||
|
||||
noto-fonts
|
||||
unifont
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
allowBitmaps = true;
|
||||
defaultFonts = {
|
||||
monospace = [ "IBM Plex Mono" "Openmoji" "Material Design Icons" ];
|
||||
serif = [ "IBM Plex Sans" "Openmoji" "Material Design Icons" ];
|
||||
sansSerif = [ "IBM Plex Sans" "Openmoji" "Material Design Icons" ];
|
||||
emoji = [ "Openmoji" ];
|
||||
};
|
||||
|
||||
hinting.style = "medium";
|
||||
# hinting.style = "hintfull";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user