diff --git a/homeManagerModules/shell/starship/default.nix b/homeManagerModules/shell/starship/default.nix index 81c0eb8c..ac488d8e 100644 --- a/homeManagerModules/shell/starship/default.nix +++ b/homeManagerModules/shell/starship/default.nix @@ -15,7 +15,7 @@ in { format = concatStrings [ "╭╴" "[](fg:${cfg.promptColors.firstColor})" - "[  ](bg:${cfg.promptColors.firstColor} fg:#090c0c)" + "[  ](bg:${cfg.promptColors.firstColor} fg:#090c0c)" "[](bg:${cfg.promptColors.secondColor} fg:${cfg.promptColors.firstColor})" "$username$hostname" "[](fg:${cfg.promptColors.secondColor} bg:${cfg.promptColors.thirdColor})" @@ -46,10 +46,10 @@ in { truncation_length = 0; substitutions = { - "Documents" = "󰈙 "; - "Downloads" = " "; - "Music" = " "; - "Pictures" = " "; + "Documents" = "󰈙"; + "Downloads" = ""; + "Music" = ""; + "Pictures" = ""; }; }; @@ -63,8 +63,8 @@ in { disabled = false; threshold = 2; - symbol = "󰔳 "; - format = "[ $symbol]($style)"; + symbol = " 󰔳"; + format = "[$symbol]($style)"; repeat = true; repeat_offset = 1; diff --git a/modules/base/locale/default.nix b/modules/base/locale/default.nix index 144b4b95..74812e80 100644 --- a/modules/base/locale/default.nix +++ b/modules/base/locale/default.nix @@ -12,9 +12,10 @@ in { fonts = { fontconfig = { enable = true; + defaultFonts = { emoji = ["Noto Color Emoji"]; - monospace = ["JetBrainsMono Nerd Font"]; + monospace = ["JetBrainsMono Nerd Font Mono"]; sansSerif = ["Noto Nerd Font"]; serif = ["Noto Nerd Font"]; }; diff --git a/modules/kmscon/default.nix b/modules/kmscon/default.nix index 9a1fedc3..fc20a0ff 100644 --- a/modules/kmscon/default.nix +++ b/modules/kmscon/default.nix @@ -20,7 +20,7 @@ in { fontDpi = mkOption { type = types.numbers.nonnegative; - default = 170; + default = 130; }; }; @@ -29,7 +29,6 @@ in { useXkbConfig = true; hwRender = false; - # TODO: https://github.com/Aetf/kmscon/issues/18 find workaround with more spaces? extraOptions = concatStringsSep " " [ "--font-size ${toString cfg.fontSize}" "--font-dpi ${toString cfg.fontDpi}"