From 00e0b5435ee4f1240f3b0d8a69d9e51361879f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 26 Jul 2025 00:37:41 +0200 Subject: [PATCH] vanadium: set compose:ralt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I think รพ is a cool character --- nix/nixosModules/extra/layouts/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/nixosModules/extra/layouts/default.nix b/nix/nixosModules/extra/layouts/default.nix index 4faa1841..cc5b9b92 100644 --- a/nix/nixosModules/extra/layouts/default.nix +++ b/nix/nixosModules/extra/layouts/default.nix @@ -16,7 +16,10 @@ services.xserver.xkb = { layout = "myDvorak"; - options = "caps:swapescape"; + options = builtins.concatStringsSep "," [ + "caps:swapescape" + "compose:ralt" + ]; }; console.useXkbConfig = true; }