Work : Fix oversized fonts.
This commit is contained in:
parent
2c835556b2
commit
1918ffdfb4
|
@ -1,8 +1,16 @@
|
||||||
{ ... }: {
|
{ lib, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./Fprint.nix
|
./Fprint.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Keyd Print to Macro remap.
|
# Keyd Print to Macro remap.
|
||||||
services.keyd.keyboards.default.settings.main.print = "layer(layer_macro)";
|
services.keyd.keyboards.default.settings.main.print = "layer(layer_macro)";
|
||||||
|
|
||||||
|
# Reduce font size.
|
||||||
|
stylix.fonts.sizes = {
|
||||||
|
applications = lib.mkForce 8;
|
||||||
|
terminal = lib.mkForce 8;
|
||||||
|
popups = lib.mkForce 12;
|
||||||
|
desktop = lib.mkForce 14;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue