9 lines
205 B
Nix
9 lines
205 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
environment.pathsToLink = [ "/libexec" ];
|
|
}
|