Files
nixy/home/system/hyprland/hyprspace.nix
2024-11-25 10:01:58 +01:00

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
];
};
};
}