nix/part/Setting.nix

63 lines
847 B
Nix

{ ... }: {
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;
};
window = {
gap = 10;
opacity.inactive = 0.85;
};
};
foot = {
font = {
step = 1;
dpi = true;
forceWhite = false;
};
};
top.refresh.ms = 2000;
popup.timeout.ms = 5000;
keyd.timeout.ms = 150;
brightness.step = 5;
volume.step = 5;
music.step = 10;
}