diff --git a/modules/core/boot.nix b/modules/core/boot.nix index 3abe9ce..6748b44 100644 --- a/modules/core/boot.nix +++ b/modules/core/boot.nix @@ -8,8 +8,23 @@ kernel.sysctl = { "vm.max_map_count" = 2147483642; }; - loader.systemd-boot.enable = true; - loader.efi.canTouchEfiVariables = true; + loader = { + efi.canTouchEfiVariables = true; + limine = { + enable = true; + style = { + wallpapers = [ + ./../../wallpapers/attack-on-titan-mikasa-ackerman.jpg + ]; + wallpaperStyle = "centered"; + backdrop = "${config.stylix.base16Scheme.base00}"; + interface = { + branding = "GarandOS Bootloader"; + resolution = "1920x1080"; + }; + }; + }; + }; # Appimage Support binfmt.registrations.appimage = { wrapInterpreterInShell = false;