- move bind scripts to standalone shell applications - split configuration into more modules - still more work to be done
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.homeModules.desktop.wayland.windowManager.hyprland;
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    wayland.windowManager.hyprland.settings.input = {
 | 
						|
      kb_layout = "us";
 | 
						|
      follow_mouse = 1;
 | 
						|
      touchpad.natural_scroll = "no";
 | 
						|
    };
 | 
						|
  };
 | 
						|
  
 | 
						|
}
 |