nixos-configs/common/overlays/blueberry/default.nix

15 lines
249 B
Nix
Raw Normal View History

final: prev: {
blueberry = prev.blueberry.overrideAttrs (o: {
2023-11-22 15:33:16 -05:00
patches =
(o.patches or [])
++ [
./wayland.patch
2023-11-22 15:33:16 -05:00
];
buildInputs =
(o.buildInputs or [])
++ [
prev.libappindicator
];
});
}