mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
12 lines
234 B
Nix
12 lines
234 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
gnome-console = super.gnome-console.overrideAttrs (prev: {
|
|
patches = prev.patches ++ [
|
|
./background.patch
|
|
./tango.patch
|
|
];
|
|
});
|
|
})
|
|
];
|
|
}
|