Browse Source

hmgr: font config

dev_01_initial
Heiko Blobner 2 years ago
parent
commit
31da710a57
  1. 18
      home-manager/hblobner_at_devvie.nix

18
home-manager/hblobner_at_devvie.nix

@ -20,7 +20,23 @@ in {
home.username = "hblobner";
home.homeDirectory = "/home/hblobner";
fonts.fontconfig.enable = true;
fonts = {
fonts = with pkgs; [
noto-fonts
noto-fonts-emoji
font-awesome
source-han-sans
(nerdfonts.override { fonts = [ "Meslo" ]})
];
fontconfig = {
enable = true;
defaultFonts = {
monospace = [ "Meslo LG M Regular Nerd Font Complete Mono" ];
serif = [ "Noto Serif" "Source Han Serif" ];
sansSerif = [ "Nono Sans" "Source Han Sans" ];
};
}
}
# Packages that should be installed to the user profile.
home.packages = with pkgs; [

Loading…
Cancel
Save