Missing boot parameters.
This commit is contained in:
parent
6241e0e1fe
commit
cb43a66712
2 changed files with 10 additions and 1 deletions
|
@ -15,7 +15,6 @@
|
|||
# TODO build this in from flake host names
|
||||
networking.hostName = "durincore";
|
||||
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "rpool/root";
|
||||
fsType = "zfs";
|
||||
|
|
|
@ -3,6 +3,16 @@
|
|||
with lib;
|
||||
{
|
||||
boot = {
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
};
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
};
|
||||
};
|
||||
# Kernel mods
|
||||
initrd = {
|
||||
availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
|
||||
kernelModules = [ ];
|
||||
|
|
Reference in a new issue