nixos-config/configurations/sound.nix
2020-05-23 12:27:44 +02:00

15 lines
344 B
Nix

{ config, lib, ... }:
{
sound.enable = true;
hardware.pulseaudio = {
enable = true;
};
# PulseAudio doesn't play nice with symlinks
systemd.user.services.pulseaudio.environment = lib.mkIf config.custom.zfs.enable {
XDG_CONFIG_HOME = "/data/home/charlotte/.config";
};
users.users.charlotte.extraGroups = [ "audio" ];
}