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 { name = mkOption {
type = types.str; type = types.str;
description = "The name of the font that will be used for GTK applications"; description = "The name of the font that will be used for GTK applications";
default = "Lexend"; # Noto Sans default = "Noto Sans"; # Lexend
}; };
size = mkOption { size = mkOption {
type = types.int; type = types.int;
description = "The size of the font"; description = "The size of the font";
default = 14; # 10 default = 10; # 10
}; };
}; };
}; };

View file

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