13 lines
201 B
Nix
13 lines
201 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
with lib;
|
||
|
{
|
||
|
boot = {
|
||
|
loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
}
|