alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix io blocking issues
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
941193d5
941193d5f6532b7de97cf78739c4ca68f0a8650d
parent
ff278f74
ff278f74c025fcb1b6ee05b3871faba56ad3359f
change-id
xypmomto
xypmomtomlotquxkmttpslxzuoxttpks
+11
-3
2 changed files
Expand all
Collapse all
Unified
Split
hosts
framework16
configuration.nix
hardware-configuration.nix
+7
-2
hosts/framework16/configuration.nix
Reviewed
···
11
11
../common/common.nix
12
12
];
13
13
14
14
-
boot.initrd.luks.devices."luks-ee306bda-c450-4a56-b4fe-537899e38e0d".device =
15
15
-
"/dev/disk/by-uuid/ee306bda-c450-4a56-b4fe-537899e38e0d";
14
14
+
boot.initrd.luks.devices."luks-ee306bda-c450-4a56-b4fe-537899e38e0d" = {
15
15
+
device = "/dev/disk/by-uuid/ee306bda-c450-4a56-b4fe-537899e38e0d";
16
16
+
bypassWorkqueues = true;
17
17
+
};
16
18
networking.hostName = "framework16"; # Define your hostname.
19
19
+
20
20
+
# Reduce swap pressure to avoid thrashing through dm-crypt
21
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
Reviewed
···
18
18
fsType = "ext4";
19
19
};
20
20
21
21
-
boot.initrd.luks.devices."luks-17e0181f-d40d-4d21-a014-0b75154e9668".device = "/dev/disk/by-uuid/17e0181f-d40d-4d21-a014-0b75154e9668";
21
21
+
boot.initrd.luks.devices."luks-17e0181f-d40d-4d21-a014-0b75154e9668" = {
22
22
+
device = "/dev/disk/by-uuid/17e0181f-d40d-4d21-a014-0b75154e9668";
23
23
+
bypassWorkqueues = true;
24
24
+
};
22
25
23
26
fileSystems."/boot" =
24
27
{ device = "/dev/disk/by-uuid/D830-50AC";