nix/part/Setting.nix

30 lines
450 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
{ ... }: {
2024-06-23 04:55:57 +03:00
ollama.primaryModel = "llama3";
browser.bin = "firefox-esr";
terminal.bin = "foot";
2024-06-23 14:48:11 +03:00
dpiAware = false;
2024-06-23 19:10:16 +03:00
sysctrl = "print";
2024-05-12 02:40:37 +03:00
keyboard = {
layouts = "us,ru";
options = "grp:toggle";
};
2024-06-23 04:55:57 +03:00
refresh = {
top = 2000;
};
2024-06-22 23:34:03 +03:00
2024-06-23 04:55:57 +03:00
step = {
brightness = 5;
volume = 5;
media = 10;
};
2024-06-23 00:40:52 +03:00
2024-06-23 04:55:57 +03:00
timeout = {
popup = 5000;
keyd = 150;
};
2024-04-06 03:03:58 +03:00
}