mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
19 lines
355 B
Nix
19 lines
355 B
Nix
{
|
|
flake.modules.nixos.hardware = { pkgs, ... }: {
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
wireplumber.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
alsa-utils
|
|
pavucontrol
|
|
];
|
|
};
|
|
}
|