19 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, ... }:
 | |
| 
 | |
| {
 | |
|   imports = [
 | |
|     ./hyprland
 | |
|   ];
 | |
| 
 | |
|   options.homeModules.desktop.wayland.windowManager = { 
 | |
|     hyprland = {
 | |
|       enable = lib.mkEnableOption "Enable Hyprland window-manager";
 | |
|       nvidia = lib.mkOption {
 | |
|         type = lib.types.bool;
 | |
|         default = false;
 | |
|         description = "Apply Hyprland nvidia settings";
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| 
 | |
| }
 |