feat: move from FantasqueSansMono to IBS Plex and set it as default across the board
This commit is contained in:
parent
c9133fc96a
commit
e6f8cf67cf
10 changed files with 27 additions and 13 deletions
|
@ -9,5 +9,6 @@
|
|||
./services.nix
|
||||
./sound.nix
|
||||
./system.nix
|
||||
./theming.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
12
modules/nixos/theming.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue