37 lines
		
	
	
	
		
			877 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			877 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }: {
 | |
|   imports = [
 | |
|     # Core Features
 | |
|     ../features/base.nix
 | |
|     ../features/tui-apps.nix
 | |
|     ../features/openssh-server.nix
 | |
| 
 | |
|     # Core Tweaks
 | |
|     ../tweaks/zram.nix
 | |
|     ../tweaks/enable_flakes.nix
 | |
|     ../tweaks/disable_nixos_user.nix
 | |
|     ../tweaks/systemd-resolved_nonsense.nix
 | |
| 
 | |
|     # Lauren Base
 | |
|     ../users/lauren_lagarde/lauren_lagarde.nix
 | |
| 
 | |
|     # i3wm
 | |
|     ../features/i3wm.nix
 | |
|     ../features/hardware/yubikey.nix
 | |
|     ../tweaks/bluetooth.nix
 | |
|     ../tweaks/intel_igpu_screen_tearing.nix
 | |
| 
 | |
|     # Dotspace
 | |
|     ../secrets/dotspace.nix
 | |
|     ../features/stronghold-binary-cache.nix
 | |
| 
 | |
|     # Assume Intel GPU
 | |
|     ../features/gpu/intel.nix
 | |
| 
 | |
|     # Additional Software
 | |
|     ../features/embedded.nix
 | |
|     ../features/hardware/rtl-sdr.nix
 | |
|     ../features/hardware/printing.nix
 | |
|     ../features/virtualization/docker.nix
 | |
|     ../features/virtualization/libvirt-host.nix
 | |
|   ];
 | |
| }
 |