about summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--system/default.nix1
-rw-r--r--system/graphics/default.nix4
2 files changed, 5 insertions, 0 deletions
diff --git a/system/default.nix b/system/default.nix
index c7a2400f..85971ba5 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -9,6 +9,7 @@
     ./sound
     ./users # the position of this item is fully arbitrary
     ./polkit
+    ./graphics
   ];
     # TODO does this really remove all the bloatware, nixos installs by default?
     environment = {
diff --git a/system/graphics/default.nix b/system/graphics/default.nix
new file mode 100644
index 00000000..eb92d5ec
--- /dev/null
+++ b/system/graphics/default.nix
@@ -0,0 +1,4 @@
+{config, ...}: {
+  hardware.opengl.enable = true;
+}
+# vim: ts=2