Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809 Autosubmit: aspen <root@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
 | 
						|
  xdg.mimeApps = rec {
 | 
						|
    enable = true;
 | 
						|
    defaultApplications = {
 | 
						|
      "text/html" = [ "firefox.desktop" ];
 | 
						|
      "x-scheme-handler/http" = [ "firefox.desktop" ];
 | 
						|
      "x-scheme-handler/https" = [ "firefox.desktop" ];
 | 
						|
      "x-scheme-handler/ftp" = [ "firefox.desktop" ];
 | 
						|
      "x-scheme-handler/chrome" = [ "firefox.desktop" ];
 | 
						|
      "application/x-extension-htm" = [ "firefox.desktop" ];
 | 
						|
      "application/x-extension-html" = [ "firefox.desktop" ];
 | 
						|
      "application/x-extension-shtml" = [ "firefox.desktop" ];
 | 
						|
      "application/xhtml+xml" = [ "firefox.desktop" ];
 | 
						|
      "application/x-extension-xhtml" = [ "firefox.desktop" ];
 | 
						|
      "application/x-extension-xht" = [ "firefox.desktop" ];
 | 
						|
    };
 | 
						|
    associations.added = defaultApplications;
 | 
						|
  };
 | 
						|
}
 |