non important commit
This commit is contained in:
parent
f08fb69562
commit
200dfa9306
1 changed files with 29 additions and 27 deletions
|
|
@ -1,41 +1,43 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.niri.settings = {
|
programs.niri = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
input = {
|
settings = {
|
||||||
keyboard = {
|
input = {
|
||||||
xkb = {
|
keyboard = {
|
||||||
layout = "cz";
|
xkb = {
|
||||||
|
layout = "cz";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
layout = {
|
layout = {
|
||||||
gaps = 8;
|
gaps = 8;
|
||||||
preset-column-widths = [
|
preset-column-widths = [
|
||||||
{proportion = 0.33333;}
|
{proportion = 0.33333;}
|
||||||
{proportion = 0.5;}
|
{proportion = 0.5;}
|
||||||
{proportion = 0.66667;}
|
{proportion = 0.66667;}
|
||||||
{proportion = 1.0;}
|
{proportion = 1.0;}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
prefer-no-csd = true;
|
prefer-no-csd = true;
|
||||||
|
|
||||||
binds = {
|
binds = {
|
||||||
"Mod+Q".action.close-window = [];
|
"Mod+Q".action.close-window = [];
|
||||||
"Mod+Return".action.spawn = ["kitty"];
|
"Mod+Return".action.spawn = ["kitty"];
|
||||||
"Mod+A".action.spawn = ["rofi" "-show" "drun"];
|
"Mod+A".action.spawn = ["rofi" "-show" "drun"];
|
||||||
|
|
||||||
"Mod+H".action.focus-column-left = [];
|
"Mod+H".action.focus-column-left = [];
|
||||||
"Mod+L".action.focus-column-right = [];
|
"Mod+L".action.focus-column-right = [];
|
||||||
"Mod+J".action.focus-window-down = [];
|
"Mod+J".action.focus-window-down = [];
|
||||||
"Mod+K".action.focus-window-up = [];
|
"Mod+K".action.focus-window-up = [];
|
||||||
|
|
||||||
"Mod+Minus".action.set-column-width = ["-10%"];
|
"Mod+Minus".action.set-column-width = ["-10%"];
|
||||||
"Mod+Equal".action.set-column-width = ["+10%"];
|
"Mod+Equal".action.set-column-width = ["+10%"];
|
||||||
|
|
||||||
"Mod+Shift+Q".action.quit = [];
|
"Mod+Shift+Q".action.quit = [];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue