nixos-config/configurations/sound.nix
Charlotte Van Petegem cfb48de40c Reorganize for zfs
2020-05-23 09:59:32 +02:00

15 lines
245 B
Nix

{ ... }:
{
custom.zfs.systemLinks = [
{ path = "/var/lib/pulse"; type = "data"; }
];
sound.enable = true;
hardware.pulseaudio = {
enable = true;
systemWide = true;
};
users.users.charlotte.extraGroups = [ "audio" ];
}