Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/48cf/limine-nix
https://github.com/48cf/limine-nix
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/48cf/limine-nix
- Owner: 48cf
- License: 0bsd
- Created: 2022-10-06T12:44:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T20:16:14.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T05:00:22.362Z (8 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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;
# ...
}
```