add(nix): overlays for zellij to flake outputs (#1312)
Add `overlays` to the flake outputs. - the `default` `overlay` supplies the package with the `zellij` name - the `nightly` `overlay` supplies the package with the `zellij-nightly` name
This commit is contained in:
parent
a9f39b85e8
commit
c5ce9834d3
1 changed files with 10 additions and 0 deletions
|
|
@ -185,3 +185,13 @@ in rec {
|
|||
|
||||
devShell = devShells.zellij;
|
||||
})
|
||||
// rec {
|
||||
overlays = {
|
||||
default = final: prev: rec {
|
||||
zellij = self.packages.${prev.system}.zellij;
|
||||
};
|
||||
nightly = final: prev: rec {
|
||||
zellij-nightly = self.packages.${prev.system}.zellij;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue