diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-07 10:46:27 +0200 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-07 10:46:27 +0200 |
| commit | 2926770788970ceeb31d69a726ba971358499862 (patch) | |
| tree | c3be8d9b3380c06d992d7d377d8292843790d274 /nixos/configuration.nix | |
| parent | c36e55e90f9bdcf2c080a874b947632fb3d56202 (diff) | |
fix sound on nixos
Diffstat (limited to 'nixos/configuration.nix')
| -rw-r--r-- | nixos/configuration.nix | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 59891cd..24d7549 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -23,9 +23,14 @@ keyMap = "fr"; }; + security.rtkit.enable = true; services.pipewire = { enable = true; - pulse.enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; + wireplumber.enable = true; }; services.libinput.enable = true; @@ -45,9 +50,15 @@ environment.systemPackages = with pkgs; [ brightnessctl + xdg-user-dirs + alsa-utils + alsa-tools + ]; + + hardware.firmware = with pkgs; [ + linux-firmware sof-firmware alsa-firmware - linux-firmware ]; services.openssh.enable = true; |
