- Included `gnome-remote-desktop` and `freerdp` in the unstable overlay for additional remote desktop functionality. - Removed the `at-spi2-core` override to simplify the configuration.
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
|
|
];
|
|
});
|
|
}
|