python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / config / appstream.nix
blob5b48f6e1705d9ccf6702d9fb40cdfa95596aa8b6
1 { config, lib, ... }:
3 with lib;
5   options = {
6     appstream.enable = mkOption {
7       type = types.bool;
8       default = true;
9       description = lib.mdDoc ''
10         Whether to install files to support the
11         [AppStream metadata specification](https://www.freedesktop.org/software/appstream/docs/index.html).
12       '';
13     };
14   };
16   config = mkIf config.appstream.enable {
17     environment.pathsToLink = [
18       # per component metadata
19       "/share/metainfo"
20       # legacy path for above
21       "/share/appdata"
22     ];
23   };