nixos-configs/homeConfigurations/vinzenz/fonts.nix

13 lines
217 B
Nix
Raw Normal View History

2025-10-02 17:01:21 +02:00
{ pkgs, ... }:
{
fonts.fontconfig = {
enable = true;
defaultFonts.monospace = [ "FiraCode Nerd Font Mono" ];
};
home.packages = with pkgs; [
nerd-fonts.fira-code
roboto-mono
recursive
];
}