mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-04 12:02:09 +02:00
8 lines
346 B
Nix
8 lines
346 B
Nix
# Hyprspace is a hyprland plugin that provides a workspaces overview (three-finger swipe up) and a workspace switcher (three-finger down).
|
|
{ inputs, pkgs, ... }: {
|
|
wayland.windowManager.hyprland = {
|
|
plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ];
|
|
settings = { plugin = { overview = { autoDrag = false; }; }; };
|
|
};
|
|
}
|