- move bind scripts to standalone shell applications - split configuration into more modules - still more work to be done
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			272 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			272 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.homeModules.desktop.wayland.windowManager.hyprland;
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    wayland.windowManager.hyprland.settings.gestures = {
 | 
						|
      workspace_swipe = true;
 | 
						|
      workspace_swipe_forever = true;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |