- Added a patch to enable copy and paste shortcuts in gnome-console through `default.nix`. - Improves usability by addressing missing shortcut actions for terminal interactions.
9 lines
269 B
Nix
9 lines
269 B
Nix
{ ... }:
|
|
final: prev: {
|
|
gnome-console = prev.gnome-console.overrideAttrs (prevAttrs: {
|
|
patches = (prevAttrs.patches or [ ]) ++ [
|
|
./gnome-console-Add-image-and-file-path-pasting-support-for.patch
|
|
./gnome-console-fix-copy-and-paste.patch
|
|
];
|
|
});
|
|
}
|