2018-08-15 08:55:35 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2021-09-13 01:02:40 +00:00
|
|
|
let
|
|
|
|
cfg = config.xdg.mime;
|
2024-08-27 18:42:50 +00:00
|
|
|
associationOptions = with lib.types; attrsOf (
|
|
|
|
coercedTo (either (listOf str) str) (x: lib.concatStringsSep ";" (lib.toList x)) str
|
2021-09-13 01:02:40 +00:00
|
|
|
);
|
|
|
|
in
|
|
|
|
|
2018-08-15 08:55:35 +00:00
|
|
|
{
|
2020-04-02 00:16:24 +00:00
|
|
|
meta = {
|
2024-08-27 18:42:50 +00:00
|
|
|
maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ figsoda ]);
|
2020-04-02 00:16:24 +00:00
|
|
|
};
|
|
|
|
|
2018-08-15 08:55:35 +00:00
|
|
|
options = {
|
2024-08-27 18:42:50 +00:00
|
|
|
xdg.mime.enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2018-08-15 08:55:35 +00:00
|
|
|
default = true;
|
|
|
|
description = ''
|
2018-09-08 21:43:42 +00:00
|
|
|
Whether to install files to support the
|
2024-10-24 09:48:59 +00:00
|
|
|
[XDG Shared MIME-info specification](https://specifications.freedesktop.org/shared-mime-info-spec/latest) and the
|
|
|
|
[XDG MIME Applications specification](https://specifications.freedesktop.org/mime-apps-spec/latest).
|
2018-08-15 08:55:35 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-09-13 01:02:40 +00:00
|
|
|
|
2024-08-27 18:42:50 +00:00
|
|
|
xdg.mime.addedAssociations = lib.mkOption {
|
2021-09-13 01:02:40 +00:00
|
|
|
type = associationOptions;
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
"application/pdf" = "firefox.desktop";
|
|
|
|
"text/xml" = [ "nvim.desktop" "codium.desktop" ];
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Adds associations between mimetypes and applications. See the
|
2022-07-28 21:19:15 +00:00
|
|
|
[
|
2024-10-24 09:48:59 +00:00
|
|
|
specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information.
|
2021-09-13 01:02:40 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2024-08-27 18:42:50 +00:00
|
|
|
xdg.mime.defaultApplications = lib.mkOption {
|
2021-09-13 01:02:40 +00:00
|
|
|
type = associationOptions;
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
"application/pdf" = "firefox.desktop";
|
|
|
|
"image/png" = [ "sxiv.desktop" "gimp.desktop" ];
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Sets the default applications for given mimetypes. See the
|
2022-07-28 21:19:15 +00:00
|
|
|
[
|
2024-10-24 09:48:59 +00:00
|
|
|
specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/default) for more information.
|
2021-09-13 01:02:40 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2024-08-27 18:42:50 +00:00
|
|
|
xdg.mime.removedAssociations = lib.mkOption {
|
2021-09-13 01:02:40 +00:00
|
|
|
type = associationOptions;
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
"audio/mp3" = [ "mpv.desktop" "umpv.desktop" ];
|
|
|
|
"inode/directory" = "codium.desktop";
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Removes associations between mimetypes and applications. See the
|
2022-07-28 21:19:15 +00:00
|
|
|
[
|
2024-10-24 09:48:59 +00:00
|
|
|
specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information.
|
2021-09-13 01:02:40 +00:00
|
|
|
'';
|
|
|
|
};
|
2018-08-15 08:55:35 +00:00
|
|
|
};
|
|
|
|
|
2024-08-27 18:42:50 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.etc."xdg/mimeapps.list" = lib.mkIf (
|
2021-09-13 01:02:40 +00:00
|
|
|
cfg.addedAssociations != {}
|
|
|
|
|| cfg.defaultApplications != {}
|
|
|
|
|| cfg.removedAssociations != {}
|
|
|
|
) {
|
2024-08-27 18:42:50 +00:00
|
|
|
text = lib.generators.toINI { } {
|
2021-09-13 01:02:40 +00:00
|
|
|
"Added Associations" = cfg.addedAssociations;
|
|
|
|
"Default Applications" = cfg.defaultApplications;
|
|
|
|
"Removed Associations" = cfg.removedAssociations;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-15 08:55:35 +00:00
|
|
|
environment.pathsToLink = [ "/share/mime" ];
|
|
|
|
|
2018-09-08 21:43:42 +00:00
|
|
|
environment.systemPackages = [
|
|
|
|
# this package also installs some useful data, as well as its utilities
|
|
|
|
pkgs.shared-mime-info
|
2018-08-15 08:55:35 +00:00
|
|
|
];
|
2018-08-15 09:59:44 +00:00
|
|
|
|
|
|
|
environment.extraSetup = ''
|
2018-09-08 21:38:51 +00:00
|
|
|
if [ -w $out/share/mime ] && [ -d $out/share/mime/packages ]; then
|
nixos/xdg/mime: disable fdatasync when building the XDG MIME database
Back in 2013, update-mime-database started using fdatasync() to write out
its changes after processing each file in /share/mime, with the reasoning
that a corrupted database from an interruption midway would be
problematic for applications[1]. Unfortunately, this caused a
significant regression in the time required to run update-mime-database:
commonly from under a second to half a minute or more.
This delay affects the time required to build system-path on NixOS, when
xdg.mime.enable is true (the default). For example, on one of my systems
system-path builds in ~48 seconds, 45 of which are update-mime-database.
This makes rapidly building new system configurations not fun.
This commit disables the calls to fdatasync(). update-mime-database
checks an environment variable, PKGSYSTEM_ENABLE_FSYNC, to determine
whether it should sync, and we can set this to false. system-path
already only has whatever filesystem commit guarantees that the Nix
builder provides. Furthermore, there is no risk of a failed MIME
database update messing up existing packages, because this is Nix.
(This issue was also reported at and discussed by Debian, Red Hat, and
Gentoo at least.)
[1] https://bugs.freedesktop.org/show_bug.cgi?id=70366
2019-05-26 03:25:12 +00:00
|
|
|
XDG_DATA_DIRS=$out/share PKGSYSTEM_ENABLE_FSYNC=0 ${pkgs.buildPackages.shared-mime-info}/bin/update-mime-database -V $out/share/mime > /dev/null
|
2018-08-15 09:59:44 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -w $out/share/applications ]; then
|
2018-10-12 01:16:50 +00:00
|
|
|
${pkgs.buildPackages.desktop-file-utils}/bin/update-desktop-database $out/share/applications
|
2018-08-15 09:59:44 +00:00
|
|
|
fi
|
|
|
|
'';
|
2018-08-15 08:55:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|