nixos/xdg/sounds: add sound-theme-freedesktop

This commit is contained in:
worldofpeace 2019-11-02 10:38:29 -04:00
parent 4bdbbc1b33
commit 4e2161f9ed

View File

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
with lib;
{
@ -14,6 +14,10 @@ with lib;
};
config = mkIf config.xdg.sounds.enable {
environment.systemPackages = [
pkgs.sound-theme-freedesktop
];
environment.pathsToLink = [
"/share/sounds"
];