nixos-config/home-manager/modules/hyprland/hyprspace.nix
2025-01-15 21:20:58 -05:00

19 lines
323 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
];
};
};
}