32 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   pkgs,
 | |
|   lib,
 | |
|   ...
 | |
| }:
 | |
| with lib;
 | |
| with lib.wyrdgard;
 | |
| {
 | |
|   wsl = {
 | |
|     enable = true;
 | |
|     defaultUser = config.wyrdgard.user.name;
 | |
| 
 | |
|     usbip = {
 | |
|       enable = true;
 | |
|       autoAttach = [ "3-1" ];
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   wyrdgard = {
 | |
|     submodules.basics-wsl = enabled;
 | |
| 
 | |
|     security = {
 | |
|       gpg = enabled;
 | |
|       sops = enabled;
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   programs.dconf.enable = true;
 | |
| 
 | |
|   system.stateVersion = "24.11";
 | |
| }
 |