mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 12:16:32 +03:00
refind bootloader appear
This commit is contained in:
@@ -69,11 +69,11 @@ let
|
||||
};
|
||||
|
||||
services = {
|
||||
xserver = {
|
||||
videoDrivers = [
|
||||
"nomodeset"
|
||||
];
|
||||
};
|
||||
# xserver = {
|
||||
# videoDrivers = [
|
||||
# "nomodeset"
|
||||
# ];
|
||||
# };
|
||||
syncthing = {
|
||||
enable = true;
|
||||
systemService = true;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user