nixcfg/overlays/mods/default.nix
Harald Hoyer 45cb8db57f feat(gnome-console): add image and file path pasting support
- Implemented detection of clipboard content types (text, files, and images).
- Added support for pasting file paths and temporary image paths.
- Ensured plain text pasting remains compatible with security checks.
2025-07-04 16:47:17 +02:00

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