nixos-config/configurations/sound.nix
2020-11-13 22:40:55 +01:00

15 lines
342 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.chvp.zfs.enable {
XDG_CONFIG_HOME = "/data/home/charlotte/.config";
};
users.users.charlotte.extraGroups = [ "audio" ];
}