15 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  inherit (lib) mkIf;
 | 
						|
  inherit (config.ooknet) wayland;
 | 
						|
in {
 | 
						|
  config = mkIf (wayland.compositor == "hyprland") {
 | 
						|
    wayland.windowManager.hyprland.settings.gestures = {
 | 
						|
      workspace_swipe = true;
 | 
						|
      workspace_swipe_forever = true;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |