mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
17 lines
378 B
Nix
17 lines
378 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
gnome-console = super.gnome-console.overrideAttrs (prev: {
|
|
patches =
|
|
(
|
|
if (builtins.elem "patches" (builtins.attrNames prev))
|
|
then prev.patches
|
|
else [ ]
|
|
) ++ [
|
|
./no-close-tab-prompt.patch
|
|
./tango.patch
|
|
];
|
|
});
|
|
})
|
|
];
|
|
}
|