mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
Use Noto Sans instead of Lexend as gtk font
This commit is contained in:
parent
217cf71d43
commit
f1bda719c6
|
@ -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
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,9 +23,9 @@ in {
|
||||||
++ common;
|
++ common;
|
||||||
|
|
||||||
sansSerif = [
|
sansSerif = [
|
||||||
"Lexend"
|
|
||||||
"Noto Sans"
|
"Noto Sans"
|
||||||
"Jost"
|
"Jost"
|
||||||
|
"Lexend"
|
||||||
]
|
]
|
||||||
++ common;
|
++ common;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue