mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
18 lines
344 B
Nix
18 lines
344 B
Nix
inputs:
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }:
|
|
{ config, pkgs, ... }:
|
|
{
|
|
boot.loader = {
|
|
systemd-boot.enable = false;
|
|
efi.canTouchEfiVariables = true;
|
|
efi.efiSysMountPoint = "/boot/EFI";
|
|
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
version = 2;
|
|
devices = [ "nodev" ];
|
|
};
|
|
};
|
|
}
|