DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: f97598a1adf5299fe19671a844dcc8668e6ef8ff nix-arta/roles/audio.nix -rw-r--r-- 448 bytes
f97598a1Jonni Liljamo feat(systems/hosts/proxy): log response status on haproxy a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  config,
  lib,
  pkgs,
  ...
}: let
  cfg = config.roles.audio;
in {
  options.roles.audio = {
    enable = lib.mkEnableOption "enable audio";
  };

  config = lib.mkIf cfg.enable {
    environment.systemPackages = with pkgs; [
      pavucontrol
    ];

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