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
add qemu
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
54a17ad7
54a17ad78b06821cf9b22ede96389a0d2a0af2a3
parent
69d73055
69d73055df5b6050586aa3e17ff388fbedd20d71
change-id
uqqwovxz
uqqwovxzkrnkxopwqnzmzwrtlwnozquw
+4
2 changed files
Expand all
Collapse all
Unified
Split
.gitignore
hosts
framework16
configuration.nix
+1
.gitignore
Reviewed
···
1
1
+
result
+3
hosts/framework16/configuration.nix
Reviewed
···
19
19
# Disable ABM (Active Backlight Management) to maintain color accuracy
20
20
boot.kernelParams = [ "amdgpu.abmlevel=0" ];
21
21
22
22
+
# Enable QEMU emulation for aarch64 (for building Pi images)
23
23
+
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
24
24
+
22
25
# Use power-profiles-daemon instead of TLP (recommended for AMD Framework)
23
26
services.power-profiles-daemon.enable = true;
24
27