19 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, pkgs, ... }:
 | |
| {
 | |
|   # Enable the X11 windowing system.
 | |
|   services.xserver = {
 | |
|     enable = true;
 | |
|     layout = "us";
 | |
|     xkbOptions = "caps:swapescape";
 | |
| 
 | |
|     libinput.enable = true;
 | |
| 
 | |
|     windowManager.i3 = {
 | |
|       enable = true;
 | |
|       extraPackages = with pkgs; [
 | |
|         i3status
 | |
|         i3lock
 | |
|       ];
 | |
|     };
 | |
|   };
 | |
| }
 |