Fix broken fonts

This commit is contained in:
2024-06-04 20:47:23 -05:00
parent 06db508fe9
commit 929d40d01c
3 changed files with 19 additions and 5 deletions

View File

@@ -45,6 +45,7 @@
enable = true; enable = true;
protonmail = true; protonmail = true;
matrix = true; matrix = true;
gtk = false;
sway = { sway = {
enable = true; enable = true;

View File

@@ -17,7 +17,7 @@ in
package = pkgs.phinger-cursors; package = pkgs.phinger-cursors;
}; };
iconTheme = { iconTheme = {
name = "awaida-dark"; name = "awaidta-dark";
package = pkgs.gnome.adwaita-icon-theme; package = pkgs.gnome.adwaita-icon-theme;
}; };
theme = { theme = {

View File

@@ -95,11 +95,24 @@ in
services.gnome.gnome-keyring.enable = mkIf cfg.secrets true; services.gnome.gnome-keyring.enable = mkIf cfg.secrets true;
services.dbus.packages = mkIf cfg.secrets [ pkgs.gnome.seahorse ]; services.dbus.packages = mkIf cfg.secrets [ pkgs.gnome.seahorse ];
xdg.portal.wlr.enable = true; xdg.portal.config.common = [ "wlr" "gtk" ];
programs.thunar.enable = true; programs.thunar.enable = true;
fonts.packages = with pkgs; [ fonts = {
packages = with pkgs; [
liberation_ttf
ubuntu_font_family
font-awesome font-awesome
vazir-fonts
]; ];
fontconfig = {
defaultFonts = {
serif = [ "Liberation Serif" "Vazirmatn" ];
sansSerif = [ "Ubuntu" "Vazirmatn" ];
monospace = [ "Ubuntu Mono" ];
};
};
};
}; };
} }