touch-ups
This commit is contained in:
parent
d6cf762181
commit
ddc055658d
@ -79,7 +79,7 @@ To change the search path for limine's binaries, supply `LIMINEDIR=/some/valid/p
|
||||
If you use Nix, you can install all these dependencies automatically by running `nix-shell`. This will also automatically set the correct directory for the limine BIOS files.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> **I do not, and cannot, currently recommend using `nix` for dependency management.** `nixpkgs` ships an outdated version of Limine which is incompatible and contains none of the necessary files.
|
||||
> **I do not, and cannot, currently recommend using `nix` for dependency management.** `nixpkgs` does not ship all of the necessary files in its packaging of limine.
|
||||
|
||||
## Kernel Parameters
|
||||
|
||||
|
11
shell.nix
11
shell.nix
@ -1,22 +1,21 @@
|
||||
let
|
||||
|
||||
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/25.05-pre";
|
||||
|
||||
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
|
||||
pkgs = import nixpkgs { config = {}; overlays = []; };
|
||||
|
||||
in
|
||||
|
||||
pkgs.mkShell {
|
||||
|
||||
packages = with pkgs; [
|
||||
|
||||
bash
|
||||
limine.dev
|
||||
limine.lib
|
||||
xorriso
|
||||
rustup
|
||||
qemu
|
||||
gnumake
|
||||
];
|
||||
|
||||
buildInputs = with pkgs; [
|
||||
limine.lib
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
|
Loading…
Reference in New Issue
Block a user