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
|
|
|
|
2022-10-30 20:15:32 -04:00
|
|
|
programs.kitty.font = {
|
2024-12-07 20:18:30 -05:00
|
|
|
package = pkgs.nerd-fonts.victor-mono;
|
2022-11-19 19:40:04 -07:00
|
|
|
name = "VictorMono Nerd Font Mono";
|
2022-10-30 20:15:32 -04:00
|
|
|
};
|
2022-06-19 23:44:29 -04:00
|
|
|
};
|
|
|
|
}
|