Use Noto Sans instead of Lexend as gtk font

This commit is contained in:
ItsDrike 2024-06-20 22:12:20 +02:00
parent 217cf71d43
commit f1bda719c6
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 3 additions and 3 deletions

View file

@ -47,13 +47,13 @@ in
name = mkOption {
type = types.str;
description = "The name of the font that will be used for GTK applications";
default = "Lexend"; # Noto Sans
default = "Noto Sans"; # Lexend
};
size = mkOption {
type = types.int;
description = "The size of the font";
default = 14; # 10
default = 10; # 10
};
};
};

View file

@ -23,9 +23,9 @@ in {
++ common;
sansSerif = [
"Lexend"
"Noto Sans"
"Jost"
"Lexend"
]
++ common;