DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: eb0e4128bb37e281c14df3ef0b5c5411188b67a2 nix-arta/modules/nixos/audio.nix -rw-r--r-- 340 bytes
eb0e4128Jonni Liljamo feat: home-manager pkgs config 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  flake.modules.nixos.audio = {pkgs, ...}: {
    environment.systemPackages = with pkgs; [
      # FIXME: change to a TUI
      pavucontrol
    ];

    services.pipewire = {
      enable = true;
      alsa = {
        enable = true;
        support32Bit = true;
      };
      jack.enable = true;
      pulse.enable = true;
    };
  };
}