me like nix
0

Configure Feed

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

fix io blocking issues

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 941193d5 parent ff278f74 change-id xypmomto
+11 -3
+7 -2
hosts/framework16/configuration.nix
··· 11 11 ../common/common.nix 12 12 ]; 13 13 14 - boot.initrd.luks.devices."luks-ee306bda-c450-4a56-b4fe-537899e38e0d".device = 15 - "/dev/disk/by-uuid/ee306bda-c450-4a56-b4fe-537899e38e0d"; 14 + boot.initrd.luks.devices."luks-ee306bda-c450-4a56-b4fe-537899e38e0d" = { 15 + device = "/dev/disk/by-uuid/ee306bda-c450-4a56-b4fe-537899e38e0d"; 16 + bypassWorkqueues = true; 17 + }; 16 18 networking.hostName = "framework16"; # Define your hostname. 19 + 20 + # Reduce swap pressure to avoid thrashing through dm-crypt 21 + boot.kernel.sysctl."vm.swappiness" = 10; 17 22 18 23 # Framework 16 specific configuration 19 24 # Disable ABM (Active Backlight Management) to maintain color accuracy
+4 -1
hosts/framework16/hardware-configuration.nix
··· 18 18 fsType = "ext4"; 19 19 }; 20 20 21 - boot.initrd.luks.devices."luks-17e0181f-d40d-4d21-a014-0b75154e9668".device = "/dev/disk/by-uuid/17e0181f-d40d-4d21-a014-0b75154e9668"; 21 + boot.initrd.luks.devices."luks-17e0181f-d40d-4d21-a014-0b75154e9668" = { 22 + device = "/dev/disk/by-uuid/17e0181f-d40d-4d21-a014-0b75154e9668"; 23 + bypassWorkqueues = true; 24 + }; 22 25 23 26 fileSystems."/boot" = 24 27 { device = "/dev/disk/by-uuid/D830-50AC";