15 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }: { 
 | |
|   imports = [
 | |
|   ];
 | |
| 
 | |
|   xsession.windowManager.i3 = {
 | |
|     config.startup = [
 | |
|       { command = "xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --primary"; }
 | |
|     ];
 | |
| 
 | |
|     extraConfig = ''
 | |
|       # House Lights
 | |
|       bindsym $mod+Shift+d exec curl -X POST https://homeassistant.mlaga97.space/api/webhook/IBlEw1rhZcmvRuUGKBMWIS3h
 | |
|     '';
 | |
|   };
 | |
| }
 |