nixos-config/modules/sound/default.nix

10 lines
116 B
Nix
Raw Normal View History

2020-02-10 06:08:03 +04:00
{ config, lib, pkgs, ... }: {
sound.enable = true;
2020-02-10 20:06:45 +04:00
imports = [
./pulseaudio.nix
2020-11-10 00:09:40 +04:00
# ./mopidy.nix
2020-02-10 20:06:45 +04:00
];
2020-02-10 06:08:03 +04:00
}