summaryrefslogtreecommitdiff
path: root/services/x11.nix
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-05-01 10:38:37 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-05-01 10:38:37 -0600
commite574a725cac3255aad67b59b65fc61d1391b7deb (patch)
tree6ae10fbdcd9cd413a8d84d00193968d808816300 /services/x11.nix
parenta30ca28d54ecfce1eb275f371c7f5f70f198e883 (diff)
downloadcfg.nix-e574a725cac3255aad67b59b65fc61d1391b7deb.tar.gz
cfg.nix-e574a725cac3255aad67b59b65fc61d1391b7deb.tar.xz
nix: initial configurations
Add an initial set of configurations as well as configurations for the `phenex` machine. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services/x11.nix')
-rw-r--r--services/x11.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/services/x11.nix b/services/x11.nix
new file mode 100644
index 0000000..30653e5
--- /dev/null
+++ b/services/x11.nix
@@ -0,0 +1,8 @@
+{ config, ... }:
+{
+ # Enable the X11 windowing system.
+ services.xserver.enable = true;
+ services.xserver.layout = "us";
+ # services.xserver.xkbVarient = "";
+ services.xserver.xkbOptions = "ctrl:nocaps";
+}