Files
nixy/home/system/hyprland/hyprspace.nix
2025-02-19 10:43:40 +01:00

12 lines
288 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
];
};
};
}