19 lines
372 B
Nix
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;
|
|
};
|
|
}
|