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