Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleverca22/152d9ab37fb56c5f5f97d5e5388d3b80 to your computer and use it in GitHub Desktop.
Save cleverca22/152d9ab37fb56c5f5f97d5e5388d3b80 to your computer and use it in GitHub Desktop.
let
xfce-overlay = self: super: {
xfce4-settings = super.xfce4-settings.overrideAttrs (old: {
patches = old.patches ++ [ ./foo ];
});
};
nixpkgs-overlay = self: super: {
xfce = super.xfce.overrideScope' xfce-overrides;
};
in {
nixpkgs.overlays = [ nixpkgs-overlay ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment