feat(nix): fix gnome-console copy-paste shortcuts

- 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.
This commit is contained in:
Harald Hoyer 2026-01-28 09:16:13 +01:00
parent c3bbcd9baa
commit 008948d61e
2 changed files with 30 additions and 0 deletions

View file

@ -3,6 +3,7 @@ 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
];
});
}