snowhawk: initrd on root
This commit is contained in:
parent
dc508175a7
commit
24bac65678
1 changed files with 12 additions and 7 deletions
|
@ -129,14 +129,19 @@ in
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.grub = {
|
boot.loader = {
|
||||||
|
grub = {
|
||||||
enable = true;
|
enable = true;
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
useOSProber = true;
|
useOSProber = true;
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
theme = pkgs.rose-pine-grub;
|
theme = pkgs.rose-pine-grub;
|
||||||
};
|
};
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
efi = {
|
||||||
|
canTouchEfiVariables = true;
|
||||||
|
efiSysMountPoint = "/efi";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue