nix-config/home/fonts/default.nix

17 lines
402 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
(nerdfonts.override {
fonts = [
2023-07-29 20:58:15 +02:00
"Hack" # my default monospace font
"MPlus" # to display symbols on bars
2022-01-18 09:32:55 +01:00
];
})
2023-07-29 20:58:15 +02:00
inter # Inter is my default sans-serif font
hack-font # Hack is my default monospace font
libertinus # Libertinus Serif is my default serif font
2022-01-18 09:32:55 +01:00
];
#fonts.fontconfig.enable = true;
}