13 lines
212 B
Nix
13 lines
212 B
Nix
# TODO: refactor into module
|
|
{ pkgs, ...}: {
|
|
services.pipewire = {
|
|
enable = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# helvum - UNMAINTAINED
|
|
crosspipe
|
|
];
|
|
}
|