8 lines
152 B
Nix
8 lines
152 B
Nix
{ tree, ... }: {
|
|
imports = with tree; [ profiles.sound.pulseaudio.pulse ];
|
|
hardware.pulseaudio = {
|
|
systemWide = true;
|
|
enable = true;
|
|
};
|
|
}
|