dotfiles/modules/darwin/fonts.nix

23 lines
384 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{
config,
pkgs,
lib,
...
}:
{
2022-06-19 23:44:29 -04:00
2022-12-21 14:18:03 -07:00
home-manager.users.${config.user} = lib.mkIf pkgs.stdenv.isDarwin {
2022-06-19 23:44:29 -04:00
2024-12-16 14:20:54 -05:00
home.packages = with pkgs; [ nerd-fonts.victor-mono ];
2022-06-19 23:44:29 -04:00
2024-04-20 09:42:06 -04:00
programs.alacritty.settings = {
font.normal.family = "VictorMono";
};
2022-06-19 23:44:29 -04:00
programs.kitty.font = {
package = pkgs.nerd-fonts.victor-mono;
2022-11-19 19:40:04 -07:00
name = "VictorMono Nerd Font Mono";
};
2022-06-19 23:44:29 -04:00
};
}