From 40d2d290556d98b31a7a0fe9017d7b6bce4d84b7 Mon Sep 17 00:00:00 2001 From: oqyude Date: Mon, 9 Mar 2026 19:18:37 +0300 Subject: [PATCH] refind bootloader appear --- configurations/mini-laptop.nix | 10 +++++----- modules/desktop/default.nix | 18 +++++++++++------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/configurations/mini-laptop.nix b/configurations/mini-laptop.nix index 431d40d..1ca3ec6 100644 --- a/configurations/mini-laptop.nix +++ b/configurations/mini-laptop.nix @@ -69,11 +69,11 @@ let }; services = { - xserver = { - videoDrivers = [ - "nomodeset" - ]; - }; + # xserver = { + # videoDrivers = [ + # "nomodeset" + # ]; + # }; syncthing = { enable = true; systemService = true; diff --git a/modules/desktop/default.nix b/modules/desktop/default.nix index 2ffd4ee..f82d388 100644 --- a/modules/desktop/default.nix +++ b/modules/desktop/default.nix @@ -29,18 +29,22 @@ efi.canTouchEfiVariables = lib.mkForce false; systemd-boot.enable = lib.mkForce false; grub = { - enable = lib.mkForce true; + enable = lib.mkForce false; device = "nodev"; efiInstallAsRemovable = true; efiSupport = true; useOSProber = true; }; - grub2-theme = { - enable = true; - theme = "whitesur"; - icon = "whitesur"; - footer = true; - customResolution = "1920x1080"; # Optional: Set a custom resolution + # grub2-theme = { + # enable = true; + # theme = "whitesur"; + # icon = "whitesur"; + # footer = true; + # customResolution = "1920x1080"; # Optional: Set a custom resolution + # }; + refind = { + enable = lib.mkForce true; + efiInstallAsRemovable = true; }; }; };