20 lines
390 B
Nix
20 lines
390 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./athena-hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "athena";
|
|
|
|
services.pipewire.extraConfig.pipewire."10-low-latency" = {
|
|
"context.properties" = {
|
|
"default.clock.rate" = 48000;
|
|
"default.clock.quantum" = 64;
|
|
"default.clock.min-quantum" = 64;
|
|
"default.clock.max-quantum" = 64;
|
|
};
|
|
};
|
|
}
|