about summary refs log tree commit diff
path: root/common.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-02-08 13:03:22 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-02-08 13:10:12 +0100
commitae393e63dd12e97389f1a17e1074ab12eef7e8df (patch)
tree07044ddeca0d7e74ed7b2664342ac4b4dd6e955c /common.nix
parent249620044a5dc6f0ab1d7b5824f93336b9a37b79 (diff)
Move a few attributes from "xserver" to "mesa".
The attributes driSupport32Bit, s3tcSupport and videoDrivers are now no
longer in services.xserver and now reside in services.mesa.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'common.nix')
-rw-r--r--common.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/common.nix b/common.nix
index eafd45d9..e78c8988 100644
--- a/common.nix
+++ b/common.nix
@@ -95,6 +95,11 @@
         ATTRS{serial}=="0001", OWNER="aszlig", SYMLINK+="axbo"
     '';
 
+    mesa = {
+      driSupport32Bit = true;
+      s3tcSupport = true;
+    };
+
     xserver = {
       enable = true;
       layout = "dvorak";
@@ -102,9 +107,6 @@
       startGnuPGAgent = true;
       startOpenSSHAgent = false;
 
-      driSupport32Bit = true;
-      s3tcSupport = true;
-
       displayManager.sessionCommands = ''
         ${pkgs.redshift}/bin/redshift -l 48.428404:10.866007 &
       '';