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
try fix mira
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
dc909e87
dc909e873bcd915fa2ec72038f9e1e516ca6acd3
parent
54a17ad7
54a17ad78b06821cf9b22ede96389a0d2a0af2a3
change-id
pqypwwxq
pqypwwxqlprsstowuoxrqoxuoyyrllqr
+10
-3
2 changed files
Expand all
Collapse all
Unified
Split
hosts
mira
configuration.nix
hardware-configuration.nix
+6
hosts/mira/configuration.nix
Reviewed
···
12
12
];
13
13
14
14
networking.hostName = "mira"; # Define your hostname.
15
15
+
16
16
+
# ZRAM swap to prevent OOM freezes
17
17
+
zramSwap = {
18
18
+
enable = true;
19
19
+
memoryPercent = 50;
20
20
+
};
15
21
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
16
22
17
23
# Configure network proxy if necessary
+4
-3
hosts/mira/hardware-configuration.nix
Reviewed
···
24
24
boot.initrd.kernelModules = [ ];
25
25
boot.kernelModules = [ "kvm-intel" ];
26
26
boot.extraModulePackages = [ ];
27
27
-
# Prevent xe driver from loading alongside i915 (causes DRM page flip EBUSY errors)
28
28
-
boot.blacklistedKernelModules = [ "xe" ];
29
27
# Enable GuC submission + HuC for proper Alder Lake GPU scheduling
30
30
-
boot.kernelParams = [ "i915.enable_guc=3" ];
28
28
+
boot.kernelParams = [
29
29
+
"i915.enable_guc=3"
30
30
+
"i915.enable_psr=0" # Disable Panel Self Refresh (causes freezes on Alder Lake)
31
31
+
];
31
32
32
33
fileSystems."/" = {
33
34
device = "/dev/disk/by-uuid/e51cb271-90b6-49ae-89aa-491b17e59d97";