minor fix

This commit is contained in:
Yan Lin 2025-10-24 12:53:24 +02:00
parent 0f8fe62245
commit 7c1edaed3d
2 changed files with 7 additions and 1 deletions

View file

@ -276,6 +276,8 @@
main = {
# Map Caps Lock to Left Control
capslock = "leftcontrol";
# Map Right Control to Caps Lock
rightcontrol = "capslock";
};
};
};

View file

@ -2,7 +2,11 @@
{
# Install papis package
home.packages = [ pkgs.papis ];
home.packages = [
(pkgs.papis.overridePythonAttrs (old: {
doCheck = false; # Skip tests due to Click incompatibility with Python 3.13
}))
];
# Papis configuration
home.file.".config/papis/config".text = ''
[settings]