Fix fonts

This commit is contained in:
2023-05-27 20:02:00 +01:00
parent a5369549c3
commit bd61589f76
4 changed files with 18 additions and 19 deletions

View File

@@ -27,7 +27,8 @@
}; };
}; };
fonts.fonts = with pkgs; [ fonts = {
fonts = with pkgs; [
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
noto-fonts-emoji noto-fonts-emoji
@@ -35,6 +36,9 @@
ubuntu_font_family ubuntu_font_family
]; ];
fontDir.enable = true;
};
programs = { programs = {
steam = { steam = {
enable = true; enable = true;

View File

@@ -41,15 +41,13 @@
"format-alt": "{:%a, %d. %b %H:%M}" "format-alt": "{:%a, %d. %b %H:%M}"
}, },
"pulseaudio": { "pulseaudio": {
"format": "󰕾{icon} {volume}%", "format": "{icon} {volume}%",
"format-muted": "", "format-muted": "󰖁 MUTED",
"format-icons": { "format-icons": {
"default": [ "default": [
"󰣾", "󰕿",
"󰣴", "󰖀",
"󰣶", "󰕾"
"󰣸",
"󰣺"
] ]
}, },
"max-volume": 100, "max-volume": 100,

View File

@@ -23,7 +23,7 @@ window#waybar {
* { * {
border: none; border: none;
min-height: 0; min-height: 0;
font-family: "Font Awesome"; font-family: "Iosevka Nerd Font Propo", "Font Awesome";
font-size: 16px; font-size: 16px;
} }

View File

@@ -2,8 +2,7 @@
programs.kitty = { programs.kitty = {
enable = true; enable = true;
font = { font = {
package = pkgs.iosevka; name = "Iosevka Nerd Font";
name = "Iosevka Nerd Font Complete";
}; };
settings = { settings = {
"include" = "catppuccin.conf"; "include" = "catppuccin.conf";
@@ -14,8 +13,6 @@
"cursor_shape" = "underline"; "cursor_shape" = "underline";
"cursor_blink_interval" = 0; "cursor_blink_interval" = 0;
"bold_font" = "Iosevka Nerd Font Complete Bold";
"disable_ligatures" = "always"; "disable_ligatures" = "always";
"enable_audio_bell" = "no"; "enable_audio_bell" = "no";