nix/part/Setting.nix

65 lines
924 B
Nix

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