mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
nixos: add AppStream module
This commit is contained in:
parent
7c73f53d83
commit
656b74f021
25
nixos/modules/config/appstream.nix
Normal file
25
nixos/modules/config/appstream.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
appstream.enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
description = ''
|
||||||
|
Whether to install files to support the
|
||||||
|
<link xlink:href="https://www.freedesktop.org/software/appstream/docs/index.html">AppStream metadata specification</link>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.appstream.enable {
|
||||||
|
environment.pathsToLink = [
|
||||||
|
# per component metadata
|
||||||
|
"/share/metainfo"
|
||||||
|
# legacy path for above
|
||||||
|
"/share/appdata"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -11,6 +11,7 @@
|
|||||||
./config/xdg/icons.nix
|
./config/xdg/icons.nix
|
||||||
./config/xdg/menus.nix
|
./config/xdg/menus.nix
|
||||||
./config/xdg/mime.nix
|
./config/xdg/mime.nix
|
||||||
|
./config/appstream.nix
|
||||||
./config/gtk/gtk-icon-cache.nix
|
./config/gtk/gtk-icon-cache.nix
|
||||||
./config/gnu.nix
|
./config/gnu.nix
|
||||||
./config/i18n.nix
|
./config/i18n.nix
|
||||||
|
Loading…
Reference in New Issue
Block a user