xdg.mime.removedAssociations

NixOS option

Removes associations between mimetypes and applications. See the specifications for more information. Globs in all variations are supported.

type: attribute set of (string or ((list of string) or string) convertible to it)
Default
{ }
Example
{
  "audio/*" = [
    "mpv.desktop"
    "umpv.desktop"
  ];
  "inode/directory" = "codium.desktop";
}
declared in: nixos/modules/config/xdg/mime.nixView source on NixOS/nixpkgs →