nixos-config/home-manager/modules/hyprland/hyprspace.nix
2025-02-09 11:16:45 -05:00

19 lines
312 B
Nix

{ inputs, pkgs, ... }:
{
wayland.windowManager.hyprland = {
plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ];
settings = {
plugin = {
overview = {
autoDrag = false;
};
};
bind = [
"$mod,TAB, overview:toggle"
];
};
};
}