Kieran's opinionated (and probably slightly dumb) nix config

chore: Update moonlark configuration.nix to set boot.loader.grub.device to "nodev"

Changed files
+1 -1
moonlark
+1 -1
moonlark/configuration.nix
···
kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
loader.grub = {
# no need to set devices, disko will add all devices that have a EF02 partition to the list already
-
# devices = [ ];
+
device = "nodev";
efiSupport = true;
efiInstallAsRemovable = true;
};