mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 19:10:09 +03:00
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
@ -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…
Reference in New Issue
Block a user