diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:34:29 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:34:29 -0400 |
| commit | f71adc2e659fd67c75270c628b44d86fa2663317 (patch) | |
| tree | fe7e2947dfcee4c3c8ad935b90c3b60f282b0089 /hosts | |
| parent | new c shell for building stuff idk (diff) | |
| download | dotfiles-nix-f71adc2e659fd67c75270c628b44d86fa2663317.tar.gz dotfiles-nix-f71adc2e659fd67c75270c628b44d86fa2663317.tar.bz2 dotfiles-nix-f71adc2e659fd67c75270c628b44d86fa2663317.zip | |
SSSEEECCCUUURRREEE BBBOOOOOOTTT
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/shinji/hardware.nix | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/hosts/shinji/hardware.nix b/hosts/shinji/hardware.nix index 88990f8..6fd6f95 100644 --- a/hosts/shinji/hardware.nix +++ b/hosts/shinji/hardware.nix @@ -11,12 +11,19 @@ # bootloader boot.loader = { efi.canTouchEfiVariables = true; - grub = { + limine = { enable = true; efiSupport = true; - device = "nodev"; - splashImage = config.theme.wallpaper; + secureBoot.enable = true; + maxGenerations = 10; + style = { + backdrop = config.theme.colors.base; + wallpapers = [ config.theme.wallpaper ]; + }; }; + + grub.enable = false; + systemd-boot.enable = false; }; # kernel modules |