feat: add overlays to flake.nix (#218)

This commit is contained in:
musjj 2023-11-01 20:40:36 +07:00 committed by GitHub
parent 396f60d9e0
commit f9fbe7225a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,5 +40,13 @@
formatter = pkgs.nixpkgs-fmt;
devShells.default = import ./nix/shell.nix { inherit pkgs inputs; };
});
})
// {
overlays = rec {
default = yazi;
yazi = final: prev: {
yazi = self.packages."${final.system}".yazi;
};
};
};
}