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 = {
|
services = {
|
||||||
xserver = {
|
# xserver = {
|
||||||
videoDrivers = [
|
# videoDrivers = [
|
||||||
"nomodeset"
|
# "nomodeset"
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemService = true;
|
systemService = true;
|
||||||
|
|||||||
@@ -29,18 +29,22 @@
|
|||||||
efi.canTouchEfiVariables = lib.mkForce false;
|
efi.canTouchEfiVariables = lib.mkForce false;
|
||||||
systemd-boot.enable = lib.mkForce false;
|
systemd-boot.enable = lib.mkForce false;
|
||||||
grub = {
|
grub = {
|
||||||
enable = lib.mkForce true;
|
enable = lib.mkForce false;
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
useOSProber = true;
|
useOSProber = true;
|
||||||
};
|
};
|
||||||
grub2-theme = {
|
# grub2-theme = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
theme = "whitesur";
|
# theme = "whitesur";
|
||||||
icon = "whitesur";
|
# icon = "whitesur";
|
||||||
footer = true;
|
# footer = true;
|
||||||
customResolution = "1920x1080"; # Optional: Set a custom resolution
|
# customResolution = "1920x1080"; # Optional: Set a custom resolution
|
||||||
|
# };
|
||||||
|
refind = {
|
||||||
|
enable = lib.mkForce true;
|
||||||
|
efiInstallAsRemovable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user