- Removed Hyprland.
- Changed to use unstable branch. - Removed Noctalia. - Enhanced Stylix configuration. Now targets nothing by default.
This commit is contained in:
@ -35,33 +35,38 @@
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader = {
|
||||
systemd-boot.enable = false;
|
||||
efi.canTouchEfiVariables = true;
|
||||
#boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
boot = {
|
||||
kernelParams = [ "quiet" "splash" ];
|
||||
initrd.verbose = false;
|
||||
loader = {
|
||||
systemd-boot.enable = false;
|
||||
efi.canTouchEfiVariables = true;
|
||||
#boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
|
||||
grub = {
|
||||
enable = true;
|
||||
device = "/dev/nvme0n1"; #Needs to be changed when using a new computer! (Make grub partition - look below!)
|
||||
#devices = [ "nodev" ];
|
||||
efiSupport = true;
|
||||
useOSProber = true;
|
||||
#splashImage =
|
||||
# extraConfig = ''
|
||||
# menuentry "NixOS - Default" {
|
||||
# set hidden=1
|
||||
# }
|
||||
# '';
|
||||
grub = {
|
||||
enable = true;
|
||||
device = "/dev/nvme0n1"; #Needs to be changed when using a new computer! (Make grub partition - look below!)
|
||||
#devices = [ "nodev" ];
|
||||
efiSupport = true;
|
||||
useOSProber = true;
|
||||
configurationLimit = 5;
|
||||
#splashImage =
|
||||
# extraConfig = ''
|
||||
# menuentry "NixOS - Default" {
|
||||
# set hidden=1
|
||||
# }
|
||||
# '';
|
||||
};
|
||||
|
||||
|
||||
grub2-theme = {
|
||||
enable = true;
|
||||
theme = "whitesur";
|
||||
footer = true;
|
||||
};
|
||||
|
||||
timeout = 10;
|
||||
};
|
||||
|
||||
|
||||
grub2-theme = {
|
||||
enable = true;
|
||||
theme = "whitesur";
|
||||
footer = true;
|
||||
};
|
||||
|
||||
timeout = 10;
|
||||
};
|
||||
|
||||
#Ensure there is a grub_bios partition: (gparted)
|
||||
|
||||
Reference in New Issue
Block a user