Compare commits

...

2 Commits

Author SHA1 Message Date
a1ccd4031c
hosts(rpi4,nullbox): update kernel 2025-02-25 15:43:36 -05:00
c8075804b1
system(sound): set clock quantum 2025-02-25 15:43:13 -05:00
3 changed files with 11 additions and 4 deletions

View File

@ -109,8 +109,7 @@
};
};
# temporary while i am away from server
boot.kernelPackages = pkgs.linuxPackages_6_6;
boot.kernelPackages = pkgs.linuxPackages_6_12;
networking.wg-quick.interfaces.wg0 = {
configFile = "/etc/wireguard/wg0.conf";

View File

@ -35,8 +35,7 @@
configurationLimit = 5;
};
# temporary while i am away from server
boot.kernelPackages = pkgs.linuxPackages_6_6;
boot.kernelPackages = pkgs.linuxPackages_6_12;
nixfiles = {
profile.server.enable = true;

View File

@ -26,6 +26,15 @@ in
alsa.support32Bit = mkDefault config.services.pipewire.alsa.enable;
pulse.enable = mkDefault true;
jack.enable = mkDefault true;
extraConfig.pipewire = {
# this should fix the extreme audio crackling in WINE
# note: this increases audio latency to 960/48000 (20ms)
"10-clock-config" = {
"context.properties" = {
"default.clock.min-quantum" = 960;
};
};
};
};
environment.systemPackages = with pkgs; [