mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
18 lines
395 B
Nix
18 lines
395 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs;
|
|
[ (nerdfonts.override { fonts = [ "VictorMono" ]; }) ];
|
|
|
|
programs.alacritty.settings = { font.normal.family = "VictorMono"; };
|
|
|
|
programs.kitty.font = {
|
|
package = (pkgs.nerdfonts.override { fonts = [ "VictorMono" ]; });
|
|
name = "VictorMono Nerd Font Mono";
|
|
};
|
|
|
|
};
|
|
|
|
}
|