Changed boot parameters after install
This commit is contained in:
parent
d4e0c6daf0
commit
151264c66f
@ -1,27 +1,39 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Bootloader
|
||||
# Bootloader: systemd-boot with EFI support
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
systemd-boot.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."/" = {
|
||||
device = "/dev/mapper/root";
|
||||
device = "/dev/mapper/root"; # LUKS unlocked device
|
||||
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
|
||||
time.timeZone = "Europe/London";
|
||||
|
Loading…
x
Reference in New Issue
Block a user