nix-v0/src/home/gui/keyd.nix
2024-11-03 15:27:57 -06:00

19 lines
372 B
Nix

{ pkgs, ... }:
{
xdg.configFile."keyd/app.conf" = {
text = ''
[firefox]
control.p = up
control.n = down
control.e = end
control.a = home
control.shift.p = macro(C-S-p)
'';
};
home.file.".local/share/gnome-shell/extensions/keyd" = {
source = "${pkgs.keyd}/share/keyd/gnome-extension-45";
recursive = true;
};
}