7 lines
		
	
	
		
			179 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			179 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }: {
 | |
|   services.fstrim.enable = true; # Improves SSD life
 | |
|   services.gvfs.enable = true; # User Mounted FS
 | |
| 
 | |
|   environment.systemPackages = with pkgs; [ nfs-utils ];
 | |
| }
 |