mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
c74d003a57
add fonts for kitty
20 lines
358 B
Nix
20 lines
358 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs;
|
|
[ (nerdfonts.override { fonts = [ "FiraCode" ]; }) ];
|
|
|
|
programs.alacritty.settings = {
|
|
font.normal.family = "FiraCode Nerd Font Mono";
|
|
};
|
|
|
|
programs.kitty.font = {
|
|
package = pkgs.nerdfonts;
|
|
name = "FiraCode";
|
|
};
|
|
|
|
};
|
|
|
|
}
|