mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
15 lines
291 B
Nix
15 lines
291 B
Nix
{ inputs, pkgs, ... }: {
|
|
|
|
wayland.windowManager.hyprland = {
|
|
plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ];
|
|
settings = {
|
|
plugin = { overview = { autoDrag = false; }; };
|
|
|
|
bind = [
|
|
"$mod,TAB, overview:toggle" # Overview
|
|
|
|
];
|
|
};
|
|
};
|
|
}
|