summaryrefslogtreecommitdiff
path: root/machines/common/x11.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/common/x11.nix')
-rw-r--r--machines/common/x11.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/machines/common/x11.nix b/machines/common/x11.nix
new file mode 100644
index 0000000..ed2084a
--- /dev/null
+++ b/machines/common/x11.nix
@@ -0,0 +1,14 @@
+{...}: {
+ services.displayManager.ly = {
+ enable = true;
+ x11Support = true;
+ };
+
+ services.xserver = {
+ enable = true;
+ xkb = {
+ layout = "us";
+ options = "caps:escape";
+ };
+ };
+}