mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
17 lines
340 B
Nix
17 lines
340 B
Nix
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
|
|
{ config, ... }:
|
|
{
|
|
boot.loader = {
|
|
systemd-boot.enable = false;
|
|
efi.canTouchEfiVariables = true;
|
|
efi.efiSysMountPoint = "/boot/EFI";
|
|
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
version = 2;
|
|
devices = [ "nodev" ];
|
|
};
|
|
};
|
|
}
|