nixcfg/overlays/unstable/default.nix
Harald Hoyer 1367fdf1e4 refactor(nix): comment out gnome-remote-desktop override configuration
- Temporarily disabled `gnome-remote-desktop` override in `default.nix` by commenting out the block.
- Removes reliance on a local patch, potentially simplifying the overlay for now.
2026-01-26 17:44:21 +01:00

28 lines
784 B
Nix

{ channels, ... }:
final: prev: {
inherit (channels.unstable)
gemini-cli
# opencode
tailscale
claude-code
freerdp
# open-webui
# vscode
# nodejs_20
;
/*
gnome-remote-desktop = channels.unstable.gnome-remote-desktop.overrideAttrs (prevAttrs: {
patches = (prevAttrs.patches or [ ]) ++ [
./gnome-remote-desktop-mac.patch
];
});
*/
# goose-cli = channels.unstable.callPackage ./goose.nix { };
# claude-code = channels.unstable.callPackage ./claude-code/package.nix { };
# gemini-cli = channels.unstable.callPackage ./gemini-cli/package.nix { };
# vscode-extensions = channels.unstable.vscode-extensions // {
# rooveterinaryinc = { roo-cline = channels.unstable.callPackage ./roo-code.nix { }; };
# };
}