My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

low latency pipewire fixes

quasigod f9ac3f3d e09434b6

+18 -1
+4 -1
modules/gaming.nix
··· 64 64 hardware.opentabletdriver.enable = true; 65 65 services = { 66 66 input-remapper.enable = true; 67 - pipewire.lowLatency.enable = true; 67 + pipewire.lowLatency = { 68 + enable = true; 69 + quantum = 32; 70 + }; 68 71 }; 69 72 programs = { 70 73 steam = {
+2
modules/hosts/hades/default.nix
··· 55 55 # firewalld.enable = true; 56 56 }; 57 57 58 + security.rtkit.enable = false; 59 + 58 60 hardware = { 59 61 amdgpu.opencl.enable = true; 60 62 bluetooth.enable = true;
+12
modules/security.nix
··· 21 21 type = "soft"; 22 22 value = 20480; 23 23 } 24 + { 25 + domain = "quasi"; 26 + item = "rtprio"; 27 + type = "-"; 28 + value = "98"; 29 + } 30 + { 31 + domain = "quasi"; 32 + item = "nice"; 33 + type = "-"; 34 + value = -20; 35 + } 24 36 ]; 25 37 }; 26 38 };