summaryrefslogtreecommitdiff
path: root/hosts/omar/desktop-environment/input.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-12-29 19:17:35 +0000
committerLinnnus <[email protected]>2025-01-27 19:50:41 +0000
commit47e2c211d343a73260a65995514f46f2ccba103d (patch)
tree083d306c1f215932b04a375e3f70de1dea5e25bd /hosts/omar/desktop-environment/input.nix
parent3eb0a3c2d694e65053227d6fd33eb44edfccdd50 (diff)
hosts/omar: Refactor desktop-environment, fix DWM status formatting
Diffstat (limited to 'hosts/omar/desktop-environment/input.nix')
-rw-r--r--hosts/omar/desktop-environment/input.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/omar/desktop-environment/input.nix b/hosts/omar/desktop-environment/input.nix
new file mode 100644
index 0000000..bb138c7
--- /dev/null
+++ b/hosts/omar/desktop-environment/input.nix
@@ -0,0 +1,11 @@
+{
+
+ # Configure keymap in X11
+ services.xserver.xkb.layout = "dk";
+ services.xserver.xkb.options = "caps:escape";
+
+ console.useXkbConfig = true;
+
+ # Enable touchpad support (enabled default in most desktopManager).
+ services.libinput.enable = true;
+}