nixos-config/modules/gnome-console-tweaks/default.nix

19 lines
414 B
Nix
Raw Normal View History

2022-11-02 17:07:18 +00:00
{
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
2023-05-25 17:30:26 +00:00
./no-notification.patch
./tango.patch
];
2022-11-02 17:07:18 +00:00
});
})
];
}