RME Babyface Pro (CC Mode) – Jack

Hey everyone,

I finally found where I messed up… bottom line: “there’s ALWAYS a NixOS way :wink:”. I’ll give the answer below for those who might stumble on the same mistake.

The trouble is that whatever you change in the configuration of qjackctl, won’t change anything. I should have read (before posting here) the “Messages” section in qjackctl, and would have seen that the buffer/frames were not 128 but 1024 – a.k.a. default value.
Actually, everything is bypassed in qjackctl and comes directly from whatever you put (or let to default) in your configuration file regarding services.jack options. Basically, my previous configuration stated by services.jack.jackd.enable put all values to default, hardware, sampling rate, buffers, etc. – see jackd man page.

Now everything is fine, since I’ve changed my configuration file as follow:

 services.jack = {
    jackd.enable = true;
    jackd.extraOptions = [ "-dalsa" "--device" "hw:1" "--period" "128" "--nperiods" "2" "--rate" "48000" ];
    # […]
};

Btw, hw:1 comes from my USB sound card being the second card on my laptop:

[tcip@tlap:~]$ cat /proc/asound/cards
 0 [PCH            ]: HDA-Intel - HDA Intel PCH
                      HDA Intel PCH at 0xdf520000 irq 146
 1 [Pro70785381    ]: USB-Audio - Babyface Pro (70785381)
                      RME Babyface Pro (70785381) at usb-0000:00:14.0-1, high speed
 2 [XL             ]: USB-Audio - ESI M8U XL
                      ESI ESI M8U XL at usb-0000:03:00.0-2.5, full speed
10 [Loopback       ]: Loopback - Loopback
                      Loopback 1

I must confess that I’m happy having managed this blunder alone – finally growing and getting used to NixOS configuration files :grin:!

Thanks to all for your previous support (that lead to my first own victory!), hope that might help someone, and all the best,

2 Likes