diff --git a/home/dotfiles/wezterm.lua b/home/dotfiles/wezterm.lua index a6523eb..a4adef3 100644 --- a/home/dotfiles/wezterm.lua +++ b/home/dotfiles/wezterm.lua @@ -12,18 +12,19 @@ config.hide_tab_bar_if_only_one_tab = true -- }) config.font = wezterm.font_with_fallback({ -- { family = "Rec Mono Waves", weight = "Regular" }, - { family = "Monaspace Argon", weight = "Medium" }, + -- { family = "Monaspace Argon", weight = "Medium" }, + { family = "Jetbrains Mono", weight = "Medium" }, -- "CozetteHiDpi", "Symbols Nerd Font", }) -config.font_rules = { - { - italic = true, - font = wezterm.font_with_fallback({ - {family = 'Monaspace Radon', weight = 'Regular'} - }) - }, -} +-- config.font_rules = { +-- { +-- italic = true, +-- font = wezterm.font_with_fallback({ +-- {family = 'Monaspace Radon', weight = 'Regular'} +-- }) +-- }, +-- } config.font_size = 13 config.cell_width = 0.95 diff --git a/system/waves/configuration.nix b/system/waves/configuration.nix index 82047cf..1f6a769 100644 --- a/system/waves/configuration.nix +++ b/system/waves/configuration.nix @@ -129,7 +129,7 @@ settings = { KbdInteractiveAuthentication = false; PermitRootLogin = "no"; - PasswordAuthentication = false; + PasswordAuthentication = true; UseDns = true; X11Forwarding = false; }; @@ -216,9 +216,9 @@ antialias = true; defaultFonts = { emoji = ["Noto Color Emoji"]; - monospace = ["Monaspace Neon" "JuliaMono" "Symbols Nerd Font" "Noto Color Emoji"]; - serif = ["Noto Serif" "Noto Color Emoji"]; - sansSerif = ["Overpass" "Nunito" "Noto Color Emoji"]; + monospace = ["Jetbrains Mono" "Monaspace Neon" "JuliaMono" "Symbols Nerd Font" "Noto Color Emoji"]; + serif = ["Alegreya" "Petrona" "Noto Serif" "Noto Color Emoji"]; + sansSerif = ["Atkinson Hyperlegible" "Overpass" "Nunito" "Noto Color Emoji"]; }; hinting = { enable = true; @@ -237,9 +237,10 @@ packages = [ pkgs.noto-fonts pkgs.noto-fonts-emoji + pkgs.jetbrains-mono pkgs.material-design-icons - (pkgs.google-fonts.override {fonts = ["Overpass" "Nunito"];}) + (pkgs.google-fonts.override {fonts = ["Overpass" "Nunito" "Alegreya" "Petrona" "Atkinson Hyperlegible"];}) (pkgs.unstable.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];}) pkgs.monaspace ];