keyd 2.5.0 -> 2.6.0 (#474495)

This commit is contained in:
Yohann Boniface
2025-12-28 22:06:14 +00:00
committed by GitHub
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -152,7 +152,10 @@ in
RuntimeDirectory = "keyd";
# Hardening
CapabilityBoundingSet = [ "CAP_SYS_NICE" ];
CapabilityBoundingSet = [
"CAP_SYS_NICE"
"CAP_IPC_LOCK"
];
DeviceAllow = [
"char-input rw"
"/dev/uinput rw"
@@ -170,7 +173,6 @@ in
ProtectKernelTunables = true;
ProtectControlGroups = true;
MemoryDenyWriteExecute = true;
RestrictRealtime = true;
LockPersonality = true;
ProtectProc = "invisible";
SystemCallFilter = [
+2 -2
View File
@@ -9,13 +9,13 @@
}:
let
version = "2.5.0";
version = "2.6.0";
src = fetchFromGitHub {
owner = "rvaiya";
repo = "keyd";
rev = "v" + version;
hash = "sha256-pylfQjTnXiSzKPRJh9Jli1hhin/MIGIkZxLKxqlReVo=";
hash = "sha256-l7yjGpicX1ly4UwF7gcOTaaHPRnxVUMwZkH70NDLL5M=";
};
pypkgs = python3.pkgs;