12 lines
310 B
Nix
12 lines
310 B
Nix
{
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.enableContainers = true;
|
|
|
|
boot.initrd.luks.devices = {
|
|
"luks-59b7ec9a-0ff6-4be8-addd-fb2fff9981a4" = {
|
|
device = "/dev/disk/by-uuid/59b7ec9a-0ff6-4be8-addd-fb2fff9981a4";
|
|
};
|
|
};
|
|
}
|