.dotfiles/.config/home-manager/fonts.nix
2024-12-09 21:22:29 +01:00

15 lines
215 B
Nix

{ config, pkgs, ... }:
{
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
dejavu_fonts
freefont_ttf
liberation_ttf
nerd-fonts.jetbrains-mono
noto-fonts
roboto
twitter-color-emoji
];
}