feat: a lot of stuff

This commit is contained in:
Jacob Bachmann 2024-04-16 20:37:08 +02:00
parent 9806ee2a4e
commit bc60f155aa
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
19 changed files with 250 additions and 20 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, ... }: lib.mkIf config.bchmnn.audio.enable {
{ pkgs, config, lib, ... }: lib.mkIf config.bchmnn.audio.enable {
# Enable pipewire - audio
services.pipewire = {
enable = true;
@ -7,5 +7,12 @@
alsa.support32Bit = true;
jack.enable = true;
pulse.enable = true;
wireplumber.enable = true;
};
environment.systemPackages = with pkgs; [
alsa-utils
pulseaudio
];
}