Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
27
module/aspect/audio.nix
Normal file
27
module/aspect/audio.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
den.aspects = {
|
||||
audio = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.pavucontrol
|
||||
pkgs.faudio
|
||||
pkgs.alsa-utils
|
||||
pkgs.alsa-lib
|
||||
];
|
||||
services = {
|
||||
pulseaudio.enable = false;
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
wireplumber.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue