oxipng: re-enable tests (#375349)
[NixPkgs.git] / nixos / modules / config / xdg / sounds.nix
blob8b5bb67e4109f9cf45760c9499b6cc016f77bb06
2   config,
3   lib,
4   pkgs,
5   ...
6 }:
8   meta = {
9     maintainers = lib.teams.freedesktop.members;
10   };
12   options = {
13     xdg.sounds.enable = lib.mkOption {
14       type = lib.types.bool;
15       default = true;
16       description = ''
17         Whether to install files to support the
18         [XDG Sound Theme specification](https://www.freedesktop.org/wiki/Specifications/sound-theme-spec/).
19       '';
20     };
21   };
23   config = lib.mkIf config.xdg.sounds.enable {
24     environment.systemPackages = [
25       pkgs.sound-theme-freedesktop
26     ];
28     environment.pathsToLink = [
29       "/share/sounds"
30     ];
31   };