10 lines
		
	
	
		
			259 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			259 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {pkgs, ...}: {
 | |
|   environment.systemPackages = with pkgs; [
 | |
|     shared-mime-info # extended mimetype support
 | |
|     lxde.lxmenu-data # open with "Installed Applications"
 | |
|     pcmanfm
 | |
|   ];
 | |
| 
 | |
|   services.gvfs.enable = true; # Mount, trash, and other functionalities
 | |
| }
 |