enricozb / popup.kak

Kakoune popup plugin
21 stars 2 forks source link

Add package and overlay to flake output #7

Closed diegofariasm closed 4 months ago

diegofariasm commented 4 months ago

Should make it easier to be able to add this package declaratively to your system.

Just consume the overlay:

nixpkgs.overlays = [
  inputs.popup-kak.overlays.default
];

then install the package:

environment.systemPackages  = [
    pkgs.kak-popup
];
enricozb commented 4 months ago

Appreciate the PR, just acknowledging that I'm looking at it. Still need some time to make sure I understand what this is doing to the flake.

enricozb commented 4 months ago

Thanks for the contribution.