nix/part/Setting.nix

60 lines
823 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ ... }: {
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 = "10px";
horizontal = "10px";
};
window = {
gap = "10";
opacity.inactive = "0.85";
};
};
foot = {
font = {
step = "1";
dpi = "yes";
forceWhite = false;
2024-04-06 03:03:58 +03:00
};
};
top.refresh = "2000";
brightness.step = "10";
2024-04-08 19:58:05 +03:00
volume.step = "5";
2024-04-06 03:03:58 +03:00
}