nix-config/home/fonts/default.nix

17 lines
402 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
(nerdfonts.override {
fonts = [
"Hack" # my default monospace font
"MPlus" # to display symbols on bars
];
})
inter # Inter is my default sans-serif font
hack-font # Hack is my default monospace font
libertinus # Libertinus Serif is my default serif font
];
#fonts.fontconfig.enable = true;
}