2024-05-19 16:31:48 +03:00
|
|
|
{ lib, ... }: {
|
2024-03-04 00:34:39 +03:00
|
|
|
imports = [
|
|
|
|
./Fprint.nix
|
|
|
|
];
|
2024-05-09 00:20:56 +03:00
|
|
|
|
|
|
|
# Keyd Print to Macro remap.
|
|
|
|
services.keyd.keyboards.default.settings.main.print = "layer(layer_macro)";
|
2024-05-19 16:31:48 +03:00
|
|
|
|
|
|
|
# Reduce font size.
|
|
|
|
stylix.fonts.sizes = {
|
2024-05-19 16:50:33 +03:00
|
|
|
applications = lib.mkForce 10;
|
2024-05-19 16:31:48 +03:00
|
|
|
terminal = lib.mkForce 8;
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|