nixcfg/overlays/mods/default.nix
Harald Hoyer 271b15314c feat(nix): add gnome-remote-desktop and freerdp to overlay
- 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.
2026-01-15 13:54:31 +01: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
];
});
}