refactor(nixos/orion): specify pipewire clock settings

This commit is contained in:
Price Hiller 2024-07-19 00:46:44 -05:00
parent d274fce1af
commit 02ec4d49f0
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -5,5 +5,26 @@
enable = true;
alsa.enable = true;
pulse.enable = true;
extraConfig.pipewire."90-default-clock" = {
"context.properties" = {
"default.clock" = {
"allowed-rates" = [
44100
48000
88200
96000
176400
192000
352800
384000
705600
768000
];
"quantum" = 32;
"min-quantum" = 32;
"max-quantum" = 1024;
};
};
};
};
}