bit structure changed and voice init

This commit is contained in:
twoneis 2023-12-27 16:38:38 +01:00
parent 51f6a03060
commit 7c948f74b9
7 changed files with 54 additions and 36 deletions

18
modules/system/audio.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, ... }: {
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
#jack.enable = true;
};
programs.noisetorch.enable = true;
environment.systemPackages = with pkgs; [
pamixer
];
}