27 lines
490 B
Nix
27 lines
490 B
Nix
{...}: {
|
|
system = "x86_64-linux";
|
|
|
|
extraConfig = {
|
|
config.gaming.enable = true;
|
|
|
|
config.docker = {
|
|
enable = true;
|
|
ollama.enable = true;
|
|
};
|
|
|
|
config.hyprlandOverrides = {
|
|
settings = {
|
|
input = {
|
|
kb_layout = "us,ru";
|
|
kb_options = "gpr:win_space_toggle,compose:caps";
|
|
};
|
|
|
|
monitor = [
|
|
"DP-3, 3840x2160, 0x0, 1.5"
|
|
"DP-4, 2560x1440, 2560x0, 1"
|
|
",preferred,auto,1"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|