Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/48cf/limine-nix


https://github.com/48cf/limine-nix

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# limine-nix

A Limine package for Nix OS that allows you to use Limine as the bootloader.

Currently only supports UEFI firmware on x86_64 platform, BIOS and AArch64 support is going to be added soon.

# Installation and usage

First, you will have to import the package as a tarball in your configuration.nix:

```nix
{
imports = [
# ...

(fetchTarball "https://github.com/czapek1337/limine-nix/tarball/master")
];
}
```

And now you can enable the `boot.loader.limine.enable` option:

```nix
{
# ...
boot.loader.limine.enable = true;
# ...
}
```