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 gpu hardware for mira
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
04f7b715
04f7b71521f0d2ba87712e435fca3db6d65c93ee
parent
3492e69d
3492e69d2980a6ae0ef113242f08b03c4898aa26
change-id
rmlwnplm
rmlwnplmxwymxzomxkpmvrltxkuknzlz
+11
-1
1 changed file
Expand all
Collapse all
Unified
Split
hosts
mira
hardware-configuration.nix
+11
-1
hosts/mira/hardware-configuration.nix
Reviewed
···
21
21
"usb_storage"
22
22
"sd_mod"
23
23
];
24
24
-
boot.initrd.kernelModules = [ ];
24
24
+
boot.initrd.kernelModules = [ "nvidia" "nvidia_modeset" "nvidia_uvm" "nvidia_drm" ];
25
25
boot.kernelModules = [ "kvm-intel" ];
26
26
boot.extraModulePackages = [ ];
27
27
# Enable GuC submission + HuC for proper Alder Lake GPU scheduling
···
68
68
hardware.graphics = {
69
69
enable = true;
70
70
enable32Bit = true; # crucial for many steam games
71
71
+
};
72
72
+
73
73
+
# NVIDIA 4070 Ti (Ada Lovelace)
74
74
+
services.xserver.videoDrivers = [ "nvidia" ];
75
75
+
hardware.nvidia = {
76
76
+
modesetting.enable = true;
77
77
+
powerManagement.enable = false;
78
78
+
open = true; # recommended for Turing+
79
79
+
nvidiaSettings = true;
80
80
+
package = config.boot.kernelPackages.nvidiaPackages.stable;
71
81
};
72
82
hardware.keyboard.zsa.enable = true;
73
83