current
 1{
 2  den.aspects.mobius.nixos = {
 3    boot.loader = {
 4      grub = {
 5        enable = true;
 6        devices = ["nodev"];
 7        efiSupport = true;
 8        gfxmodeEfi = "1024x768";
 9      };
10      efi = {
11        canTouchEfiVariables = true;
12        efiSysMountPoint = "/boot";
13      };
14    };
15
16    boot.initrd.systemd = {
17      enable = true;
18    };
19  };
20}