Files
nixos/modules/drivers/amdgpu.nix
luochen570 b2baaa5f5f chore: upgrade nixpkgs/home-manager to 26.05 and re-lock
- nixpkgs: nixos-25.05 -> nixos-26.05 (rev 70cc4559)
- home-manager: release-25.05 -> release-26.05
- fix 26.05 breaking changes: fcitx5-configtool/fcitx5-chinese-addons rename,
  resolved.extraConfig -> settings.Resolve, amdvlk removed (RADV default),
  desktop: import missing hardware-configuration.nix
- home/git.nix: migrate deprecated userName/extraConfig to settings
2026-08-13 04:17:18 +08:00

14 lines
385 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{ pkgs, ... }:
{
# Ryzen 7 9700X 核显RDNA2相关的用户态支持。
# 作为辅助显卡配置保留X 的主显卡驱动仍由
# desktop profile / nvidia 模块控制。
# amdvlk 在 26.05 已被官方移除AMD 弃用RADV 默认启用)。
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
];
};
}