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