Extract fontconfig configs
This commit is contained in:
parent
efecd38dbc
commit
a32f74e268
2 changed files with 29 additions and 30 deletions
|
|
@ -15,7 +15,7 @@ in
|
|||
{
|
||||
environment = {
|
||||
inherit sessionVariables systemPackages;
|
||||
|
||||
|
||||
etc = {
|
||||
"1password/custom_allowed_browsers" = {
|
||||
text = ''
|
||||
|
|
@ -27,6 +27,33 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
fonts.fontconfig = {
|
||||
antialias = true;
|
||||
hinting = {
|
||||
enable = true;
|
||||
style = "slight";
|
||||
};
|
||||
subpixel = {
|
||||
rgba = "rgb";
|
||||
lcdfilter = "default";
|
||||
};
|
||||
defaultFonts = {
|
||||
serif = [
|
||||
"SF Pro"
|
||||
"DejaVu Serif"
|
||||
];
|
||||
sansSerif = [
|
||||
"SF Pro"
|
||||
"DejaVu Sans"
|
||||
];
|
||||
monospace = [
|
||||
"Iosevka Cavalier"
|
||||
"DejaVu Sans Mono"
|
||||
];
|
||||
emoji = [ "Noto Color Emoji" ];
|
||||
};
|
||||
};
|
||||
|
||||
hardware.bluetooth = {
|
||||
settings = {
|
||||
General.Experimental = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue