12 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (lib) mkIf;
 | 
						|
  host = config.systemModules.host;
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
  config = mkIf ( host.type != "phone") {
 | 
						|
    services.gvfs.enable = true;
 | 
						|
  };
 | 
						|
}
 |