feat: move from FantasqueSansMono to IBS Plex and set it as default across the board

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-09-19 23:58:17 -03:00
parent c9133fc96a
commit e6f8cf67cf
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
10 changed files with 27 additions and 13 deletions

View file

@ -9,5 +9,6 @@
./services.nix
./sound.nix
./system.nix
./theming.nix
];
}

View file

@ -72,8 +72,8 @@
(catppuccin-sddm.override # So SDDM finds the theme files.
{
flavor = "frappe";
font = "FantasqueSansM Nerd Font";
fontSize = "12";
font = "IBM Plex Sans";
fontSize = "11";
background = "${./theming/sddm/Background.jpg}";
loginBackground = true;
}

12
modules/nixos/theming.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
# Set the default fonts for the system.
fonts.fontconfig = {
defaultFonts = {
serif = [ "IBM Plex Serif" ];
sansSerif = [ "IBM Plex Sans" ];
monospace = [ "IBM Plex Mono" ];
};
};
}