aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/config/appstream.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/config/appstream.nix')
-rw-r--r--nixpkgs/nixos/modules/config/appstream.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixpkgs/nixos/modules/config/appstream.nix b/nixpkgs/nixos/modules/config/appstream.nix
index 483ac9c3cd7..a72215c2f56 100644
--- a/nixpkgs/nixos/modules/config/appstream.nix
+++ b/nixpkgs/nixos/modules/config/appstream.nix
@@ -7,18 +7,18 @@ with lib;
type = types.bool;
default = true;
description = ''
- Whether to install files to support the
+ 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 = [
+ environment.pathsToLink = [
# per component metadata
- "/share/metainfo"
+ "/share/metainfo"
# legacy path for above
- "/share/appdata"
+ "/share/appdata"
];
};