switch back to pulseaudio

This commit is contained in:
Tao Tien 2024-03-03 22:23:33 -08:00
parent 493ba3a2d5
commit 09b0c4ae13
3 changed files with 6 additions and 2 deletions

View file

@ -92,7 +92,7 @@
pulse.enable = true;
wireplumber.enable = lib.mkDefault true;
};
hardware.pulseaudio.enable = false;
hardware.pulseaudio.enable = lib.mkDefault false;
security.sudo-rs.enable = true;
# security.sudo-rs.extraRules = [{

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
services.pipewire.enable = false;
hardware.pulseaudio.enable = true;
hardware.pulseaudio.support32Bit = true;
environment.systemPackages = with pkgs; [
# egl-wayland
# gpt4all-chat

View file

@ -138,7 +138,7 @@
users.users.tao = {
isNormalUser = true;
extraGroups = ["video" "wheel" "libvirtd" "dialout" "game"];
extraGroups = ["audio" "video" "wheel" "libvirtd" "dialout" "game"];
shell = pkgs.nushell;
};