Install Victor Mono

This commit is contained in:
Kiana Sheibani 2022-04-20 23:30:16 -04:00
parent f3e0f06eb5
commit a05bb21198
3 changed files with 6 additions and 5 deletions

View file

@ -44,6 +44,7 @@ nixpkgs, # The flake's input version of nixpkgs
ubuntu_font_family ubuntu_font_family
(nerdfonts.override { fonts = [ "FiraCode" "Ubuntu" "UbuntuMono" ]; }) (nerdfonts.override { fonts = [ "FiraCode" "Ubuntu" "UbuntuMono" ]; })
meslo-lgs-nf meslo-lgs-nf
victor-mono
]; ];
fontconfig = { fontconfig = {

View file

@ -33,12 +33,12 @@
}; };
font = font =
let family = "FiraCode Nerd Font Mono"; let family = "VictorMono";
font-style = style: { inherit family style; }; font-style = style: { inherit family style; };
in { in {
normal = font-style "Regular"; normal = font-style "SemiBold";
bold = font-style "Bold"; bold = font-style "Bold";
italic = font-style "Italic"; italic = font-style "SemiBold Italic";
bold_italic = font-style "Bold Italic"; bold_italic = font-style "Bold Italic";
size = 11; size = 11;

View file

@ -8,7 +8,7 @@ in {
programs.starship.settings = { programs.starship.settings = {
format = "$directory$nix_shell$all$fill$cmd_duration$status$jobs$time $line_break$character"; format = "$directory$nix_shell$all$fill$cmd_duration$status$jobs$time$line_break$character";
fill.symbol = " "; fill.symbol = " ";
add_newline = true; add_newline = true;
@ -48,7 +48,7 @@ in {
time = { time = {
disabled = false; disabled = false;
format = "[$time]($style)"; format = "[$time]($style) ";
style = "dimmed cyan"; style = "dimmed cyan";
}; };