about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-03-01 18:01:13 +0000
committerGitHub <noreply@github.com>2023-03-01 18:01:13 +0000
commit904a60778b32196bb1d517340fd2912d4fe27b5e (patch)
tree461d57fbcafcfd4556e22d6242f0f3393ba7a6a7 /nixos
parent2702f5f17daf4ad842aff12f6a1fee43b9c2dad4 (diff)
parentd2eff09f508dedafb907d8a8212f5fbc7da7ef75 (diff)
downloadnixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar.gz
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar.bz2
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar.lz
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar.xz
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.tar.zst
nixlib-904a60778b32196bb1d517340fd2912d4fe27b5e.zip
Merge master into staging-next
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/release-notes/rl-2305.section.md2
-rw-r--r--nixos/modules/services/x11/xserver.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index f6a37b92a098..f7637ac89d23 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -136,6 +136,8 @@ In addition to numerous new and upgraded packages, this release has the followin
   [upstream's release notes](https://github.com/iputils/iputils/releases/tag/20221126)
   for more details and available replacements.
 
+- [services.xserver.videoDrivers](options.html#opt-services.xserver.videoDrivers) now defaults to the `modesetting` driver over device-specific ones. The `radeon`, `amdgpu` and `nouveau` drivers are still available, but effectively unmaintained and not recommended for use.
+
 ## Other Notable Changes {#sec-release-23.05-notable-changes}
 
 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 83a71dcf23e0..adb079c87a8b 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -256,7 +256,7 @@ in
 
       videoDrivers = mkOption {
         type = types.listOf types.str;
-        default = [ "amdgpu" "radeon" "nouveau" "modesetting" "fbdev" ];
+        default = [ "modesetting" "fbdev" ];
         example = [
           "nvidia" "nvidiaLegacy390" "nvidiaLegacy340" "nvidiaLegacy304"
           "amdgpu-pro"