diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-26 18:29:53 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-26 18:29:53 -0400 |
| commit | bf3755cc2a5bd54400167d41ce9c75751028bc40 (patch) | |
| tree | d46595b26e4c9ff4e1b6375b9c57c73fcd136aa2 /options.nix | |
| parent | add openrgb support, and custom rust scheduler (diff) | |
| download | dotfiles-nix-bf3755cc2a5bd54400167d41ce9c75751028bc40.tar.gz dotfiles-nix-bf3755cc2a5bd54400167d41ce9c75751028bc40.tar.bz2 dotfiles-nix-bf3755cc2a5bd54400167d41ce9c75751028bc40.zip | |
refactor bootloaders into modules
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/options.nix b/options.nix index 7b44c32..abd82e1 100644 --- a/options.nix +++ b/options.nix @@ -528,6 +528,17 @@ in { }; # + # Different bootloaders to choose from (system only) + # + bootloader = { + grub.enable = mkEnableOption "Enable the grub boot loader"; + limine = { + enable = mkEnableOption "Enable the limine boot loader"; + secureBoot.enable = mkEnableOption "Enable secure boot for limine"; + }; + }; + + # # Virt/VM programs to enable # virt = { |