mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
25 lines
626 B
Nix
25 lines
626 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 = {
|
|
centerAligned = true;
|
|
hideTopLayers = true;
|
|
hideOverlayLayers = true;
|
|
showNewWorkspace = true;
|
|
exitOnClick = true;
|
|
exitOnSwitch = true;
|
|
drawActiveWorkspace = true;
|
|
autoDrag = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|