Try and fix hyfetch and add zjstatus
This commit is contained in:
parent
814440e96a
commit
0e554116db
4 changed files with 139 additions and 10 deletions
|
@ -1,5 +1,9 @@
|
|||
# This file defines overlays
|
||||
{inputs, ...}: {
|
||||
{
|
||||
inputs,
|
||||
zjstatus,
|
||||
...
|
||||
}: {
|
||||
# This one contains whatever you want to overlay
|
||||
# You can change versions, add patches, set compilation flags, anything really.
|
||||
# https://nixos.wiki/wiki/Overlays
|
||||
|
@ -9,6 +13,12 @@
|
|||
# };
|
||||
};
|
||||
|
||||
zjstatus = (
|
||||
final: prev: {
|
||||
zjstatus = zjstatus.packages.${prev.system}.default;
|
||||
}
|
||||
);
|
||||
|
||||
# This one brings our custom packages from the 'pkgs' directory
|
||||
additions = final: _prev:
|
||||
import ../pkgs {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue