Update Steam Deck config

This commit is contained in:
Invariantspace 2024-03-02 15:29:23 -08:00
parent 4dedb233de
commit 02354e07f9
11 changed files with 53 additions and 44 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Configure default fonts
fonts = {
fontconfig.defaultFonts = {
serif = [ "Noto Serif" "Noto Serif CJK SC" ];
sansSerif = [ "Inter" "Noto Sans CJK SC" ];
monospace = [ "Iosevka" "Noto Sans Mono CJK SC" ];
};
packages = with pkgs; [
inter
iosevka
noto-fonts
noto-fonts-cjk
noto-fonts-cjk-serif
noto-fonts-emoji
];
};
}