11 lines
205 B
Nix
11 lines
205 B
Nix
{ config, lib, ... }: {
|
|
# Enable bootloader & clear /tmp on boot.
|
|
boot = {
|
|
cleanTmpDir = true;
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
}
|