more work

This commit is contained in:
Chris Kruining 2025-07-24 09:57:59 +02:00
parent 30501b7fac
commit ef6c049068
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
36 changed files with 843 additions and 842 deletions

View file

@ -25,23 +25,27 @@ in
config = mkMerge [
({
boot.loader = {
systemd-boot.enable = false;
grub.enable = true;
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = false;
grub.enable = true;
grub2-theme = {
enable = true;
theme = "vimix";
footer = true;
grub2-theme = {
enable = true;
theme = "vimix";
footer = true;
};
};
};
})
(mkIf cfg.type == "bios" {
(mkIf (cfg.type == "bios") {
boot.loader.grub.efiSupport = false;
})
(mkIf cfg.type == "uefi" {
(mkIf (cfg.type == "uefi") {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {