about summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/machines/chupacabra.nix28
1 files changed, 26 insertions, 2 deletions
diff --git a/home/machines/chupacabra.nix b/home/machines/chupacabra.nix
index 714348e3f174..c0d1fce431fb 100644
--- a/home/machines/chupacabra.nix
+++ b/home/machines/chupacabra.nix
@@ -1,7 +1,31 @@
-{ ... }:
-{
+{ pkgs, ... }:
+let
+  laptopKeyboardId = "25";
+in {
   system.machine = {
     wirelessInterface = "wlp59s0";
     i3FontSize = 9;
   };
+
+  systemd.user.services.laptop-keyboard = {
+    Unit = {
+      Description = "Swap caps+escape and alt+super, but only on the built-in laptop keyboard";
+      After = [ "graphical-session-pre.target" ];
+      PartOf = [ "graphical-session.target" ];
+    };
+
+    Install = { WantedBy = [ "graphical-session.target" ]; };
+
+    Service = {
+      Type = "oneshot";
+      RemainAfterExit = true;
+      ExecStart = (
+        "${pkgs.xorg.setxkbmap}/bin/setxkbmap "
+          + "-device ${laptopKeyboardId} "
+          + "-option caps:swapescape "
+          + "-option compose:ralt "
+          + "-option altwin:swap_alt_win"
+      );
+    };
+  };
 }