{ isUnstable, lib, ... }: let openssh = import ./openssh.nix; tailscale = import ./tailscale.nix; in { nixpkgs.overlays = if isUnstable then [ (_: super: { elmPackages = super.elmPackages // { elm = super.elmPackages.elm.override { patches = [ ./elm-no-color.diff ]; }; }; }) (import ./jetbrains.nix) (import ./tidal-hifi.nix { inherit lib; }) openssh tailscale ] else [ (import ./matrix-synapse.nix) openssh tailscale ]; } # Example Python dep overlay # (self: super: { # python3 = super.python3.override { # packageOverrides = python-self: python-super: { # canonicaljson = python-super.canonicaljson.overrideAttrs (oldAttrs: { # nativeBuildInputs = [ python-super.setuptools ]; # }); # }; # }; # }) # Example of an overlay that changes the buildGoModule function #tailscale = self: super: { # tailscale = super.callPackage "${super.path}/pkgs/servers/tailscale" { # buildGoModule = args: # super.buildGo119Module (args // rec { # version = "1.32.2"; # src = super.fetchFromGitHub { # owner = "tailscale"; # repo = "tailscale"; # rev = "v${version}"; # sha256 = "sha256-CYNHD6TS9KTRftzSn9vAH4QlinqNgU/yZuUYxSvsl/M="; # }; # vendorSha256 = "sha256-VW6FvbgLcokVGunTCHUXKuH5+O6T55hGIP2g5kFfBsE="; # }); # }; #};