Setting: Disable DPI aware.
This commit is contained in:
parent
016354bf1e
commit
d4deff9c99
|
@ -1,14 +1,8 @@
|
||||||
{ 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 10;
|
|
||||||
terminal = lib.mkForce 8;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ in {
|
||||||
fonts = {
|
fonts = {
|
||||||
sizes = {
|
sizes = {
|
||||||
applications = 12;
|
applications = 12;
|
||||||
terminal = 12;
|
terminal = 14;
|
||||||
popups = 12;
|
popups = 12;
|
||||||
desktop = 14;
|
desktop = 14;
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
ollama.primaryModel = "llama3";
|
ollama.primaryModel = "llama3";
|
||||||
browser.bin = "firefox-esr";
|
browser.bin = "firefox-esr";
|
||||||
terminal.bin = "foot";
|
terminal.bin = "foot";
|
||||||
dpiAware = true;
|
dpiAware = false;
|
||||||
sysctrl = "print";
|
sysctrl = "print";
|
||||||
|
|
||||||
keyboard = {
|
keyboard = {
|
||||||
|
|
Loading…
Reference in a new issue