nixos/castle: Fix pipewire config for jacktrip
This commit is contained in:
parent
5f0db06d99
commit
28d3a9b83f
@ -85,6 +85,7 @@
|
|||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
domain = "h.${lib.my.pubDomain}";
|
domain = "h.${lib.my.pubDomain}";
|
||||||
|
firewall.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
@ -94,6 +95,14 @@
|
|||||||
lm_sensors
|
lm_sensors
|
||||||
linuxPackages.cpupower
|
linuxPackages.cpupower
|
||||||
];
|
];
|
||||||
|
environment.etc = {
|
||||||
|
"pipewire/pipewire.conf.d/sample-size.conf".text = ''
|
||||||
|
context.properties = {
|
||||||
|
default.clock.quantum = 128
|
||||||
|
default.clock.max-quantum = 128
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
gc.automatic = false;
|
gc.automatic = false;
|
||||||
@ -134,7 +143,10 @@
|
|||||||
services = { };
|
services = { };
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [ ];
|
packages = with pkgs; [
|
||||||
|
jacktrip
|
||||||
|
qpwgraph
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
Loading…
Reference in New Issue
Block a user