nixfiles/home/environments/niri/niriswitcher.nix
2025-07-22 13:37:49 -07:00

19 lines
334 B
Nix

_: {
programs.niriswitcher = {
enable = true;
settings = {
keys = {
modifier = "Super";
switch = {
next = "Tab";
prev = "Shift+Tab";
};
};
center_on_focus = true;
appearance = {
system_theme = "dark";
icon_size = 64;
};
};
};
}