From 49adbed5109f3458c7cbe0beb71adf68e85421ea Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 25 Oct 2011 00:27:07 +0000 Subject: [PATCH] * Add a module that provides all the Radeon firmwares. svn path=/nixos/trunk/; revision=30004 --- modules/hardware/video/radeon.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/hardware/video/radeon.nix diff --git a/modules/hardware/video/radeon.nix b/modules/hardware/video/radeon.nix new file mode 100644 index 00000000000..8836cff8a84 --- /dev/null +++ b/modules/hardware/video/radeon.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: + +{ + hardware.firmware = [ pkgs.radeonR600 pkgs.radeonR700 pkgs.radeonJuniper ]; +}