nix/home/file/keyd/module/Disable.nix

30 lines
417 B
Nix

{
pkgs,
...
}: let
apps = [
"gimp"
"gimp-*"
"steam-proton"
"steam-app-*"
];
keys = [
"escape"
"leftcontrol"
];
in {
file = let
keySets = builtins.map (key: {
name = key;
value = key;
}) keys;
appSets = builtins.map (app: {
name = app;
value = builtins.listToAttrs keySets;
}) apps;
in
(pkgs.formats.ini { }).generate "KeydDisableConfig" (builtins.listToAttrs appSets);
}