Changed boot parameters after install

This commit is contained in:
Luke Else 2025-03-21 10:51:45 +00:00
parent d4e0c6daf0
commit 151264c66f

View File

@ -1,27 +1,39 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Bootloader # Bootloader: systemd-boot with EFI support
boot = { boot = {
loader = { loader = {
systemd-boot = { systemd-boot.enable = true;
enable = true; efi.canTouchEfiVariables = true;
};
# Enable support for LUKS
initrd = {
luks.devices = {
"root" = {
device = "/dev/sda1"; # Change to your actual encrypted partition
preLVM = true;
allowDiscards = true; # Enable if using an SSD with TRIM support
};
}; };
}; };
efi = { };
enable = true;
canTouchEfiVariables = true;
espDevice = "/dev/sda2";
};
initrd.luks.devices.cryptroot.device = "/dev/sda1";
}
# File systems
fileSystems."/" = { fileSystems."/" = {
device = "/dev/mapper/root"; device = "/dev/mapper/root"; # LUKS unlocked device
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = [{ device = "/swapfile"; size = 8192; }]; # EFI partition mount (usually /boot or /boot/efi)
fileSystems."/boot" = {
device = "/dev/sda2"; # Change to your actual EFI partition
fsType = "vfat";
options = [ "nofail" "defaults" ];
};
swapDevices = [{ device = "/swapfile"; size = 4096; }];
# Locales and timezone # Locales and timezone
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";