nixcfg/overlays/mods/default.nix
Harald Hoyer 008948d61e 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.
2026-01-28 09:16:13 +01:00

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
];
});
}