nix/part/Setting.nix

65 lines
924 B
Nix
Raw Normal View History

# Global settings.
# Just like I can configure each package, here I configure my config! :O)
2024-04-06 03:03:58 +03:00
{ ... }: {
tmux = {
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 1;
horizontal = 1;
2024-04-06 03:03:58 +03:00
};
status = {
2024-04-29 02:03:44 +03:00
interval = 2;
length = 50;
2024-04-06 03:03:58 +03:00
battery.threshold = {
2024-04-29 02:03:44 +03:00
high = 60;
medium = 40;
low = 20;
show = 40;
2024-04-06 03:03:58 +03:00
};
volume.threshold = {
2024-04-29 02:03:44 +03:00
high = 80;
medium = 40;
low = 10;
show = 100;
2024-04-06 03:03:58 +03:00
};
};
};
nvim = {
editor = {
2024-04-29 02:03:44 +03:00
relativenumber = true;
indent.default = 2;
2024-04-06 03:03:58 +03:00
};
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 2;
horizontal = 4;
2024-04-06 03:03:58 +03:00
};
};
sway = {
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 10;
horizontal = 10;
2024-04-06 03:03:58 +03:00
};
};
foot = {
font = {
2024-04-29 02:03:44 +03:00
step = 1;
2024-04-29 02:07:57 +03:00
dpi = true;
2024-04-06 03:03:58 +03:00
};
};
2024-04-29 02:03:44 +03:00
top.refresh.ms = 2000;
popup.timeout.ms = 5000;
keyd.timeout.ms = 150;
2024-04-06 03:03:58 +03:00
2024-04-29 02:03:44 +03:00
brightness.step = 5;
volume.step = 5;
2024-05-29 14:17:22 +03:00
media.step = 10;
2024-05-12 02:40:37 +03:00
keyboard = {
layouts = "us,ru";
options = "grp:toggle";
};
2024-04-06 03:03:58 +03:00
}