14 lines
229 B
Nix
14 lines
229 B
Nix
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader = {
|
|
timeout = 1;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
};
|
|
};
|
|
};
|
|
}
|