refactor and cleanup

This commit is contained in:
Zoty 2026-06-23 15:08:09 -03:00
parent 0b4382253f
commit 71f5c6dd61
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
9 changed files with 35 additions and 48 deletions

View file

@ -1,5 +1,5 @@
{ den, ... }: {
den.aspects.core.nixos = { pkgs, ... }: {
den.aspects.services.nixos = {
services = {
libinput.enable = true;
fstrim.enable = true;
@ -14,10 +14,10 @@
jack.enable = true;
extraConfig.pipewire."92-low-latency" = {
"content.properties" = {
"default.clock.rate" = 48000;
"default.clock.quantum" = 256;
"default.clock.min-quantum" = 256;
"default.clock.max-quantum" = 256;
"default.clock.rate" = 48000;
"default.clock.quantum" = 256;
"default.clock.min-quantum" = 256;
"default.clock.max-quantum" = 256;
};
};
extraConfig.pipewire-pulse."92-low-latency" = {
@ -25,9 +25,9 @@
{
name = "libpipewire-module-protocol-pulse";
args = {
pulse.min.req = "256/48000";
pulse.min.req = "256/48000";
pulse.default.req = "256/48000";
pulse.max.req = "256/48000";
pulse.max.req = "256/48000";
pulse.min.quantum = "256/48000";
pulse.max.quantum = "256/48000";
};
@ -36,5 +36,5 @@
};
};
};
};
};
}