remove unused

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-09-12 14:44:09 +02:00
parent 0cb07052bd
commit 32a079507c
9 changed files with 47 additions and 475 deletions

View File

@@ -20,7 +20,6 @@ in {
./bindings.nix
./polkitagent.nix
./keyboard-backlight.nix # CHANGEME: This is for omen laptop only
# ./hyprspace.nix # FIXME: Broken for now
];
home.packages = with pkgs; [

View File

@@ -1,24 +0,0 @@
# 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;
};
};
};
};
}