minor fix
This commit is contained in:
parent
0f8fe62245
commit
7c1edaed3d
2 changed files with 7 additions and 1 deletions
|
|
@ -276,6 +276,8 @@
|
||||||
main = {
|
main = {
|
||||||
# Map Caps Lock to Left Control
|
# Map Caps Lock to Left Control
|
||||||
capslock = "leftcontrol";
|
capslock = "leftcontrol";
|
||||||
|
# Map Right Control to Caps Lock
|
||||||
|
rightcontrol = "capslock";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,11 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
# Install papis package
|
# 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
|
# Papis configuration
|
||||||
home.file.".config/papis/config".text = ''
|
home.file.".config/papis/config".text = ''
|
||||||
[settings]
|
[settings]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue