gila/shell.nix
2025-02-10 14:14:17 -05:00

27 lines
346 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
bash
limine
xorriso
rustup
qemu
];
shellHook = ''
rustup default stable;
rustup target add x86_64-unknown-none
'';
}