commit | d522b8c61e40001d546874d04662ebc67756dbce | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Jan 26 00:47:34 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Feb 26 13:09:28 2023 +0000 |
tree | d64d789ec262a87a4edd80d6dad1234126fb4121 | |
parent | b954cd6e6ddb140056df1091cb52eb74351140ce [diff] |
Add a caps-rebinding using xmodmap
diff --git a/modules/xmodmap.nix b/modules/xmodmap.nix new file mode 100644 index 0000000..3e250ed --- /dev/null +++ b/modules/xmodmap.nix
@@ -0,0 +1,9 @@ +{ pkgs, ... }: { + home.home = { + packages = [ pkgs.xorg.xmodmap ]; + file.".Xmodmap".text = '' + keycode 66 = F12 + clear Lock + ''; + }; +}