ark/users/modules/urxvt/default.nix

10 lines
190 B
Nix
Raw Normal View History

2024-01-23 02:11:22 +03:00
{...}: {
programs.urxvt = {
enable = true;
keybindings = {
"Shift-Control-C" = "eval:selection_to_clipboard";
"Shift-Control-V" = "eval:paste_clipboard";
};
};
}