DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 643d48110f145a10cb43a39cd3ae9cbffb014b5f nix-arta/modules/nixos/audio.nix -rw-r--r-- 340 bytes
643d4811Jonni Liljamo feat: compositor group 8 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;
    };
  };
}