genusOS/flake.nix
Hopeless Tyromancy 0d436e5255 initial state
Currently limine based, cribbing from osdev wiki a bit, and from
dreamportdev
2026-02-02 19:51:54 -05:00

24 lines
425 B
Nix

{
description = "NEURON with custom mechanisms";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
packages = [
pkgs.limine
pkgs.clang
pkgs.gcc
pkgs.gnumake
pkgs.nasm
];
};
};
}