12 lines
173 B
Nix
12 lines
173 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
tmp.useTmpfs = config.host.highRam;
|
|
};
|
|
}
|