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

chore: add boot.loader.grub.device

Changed files
+4 -1
moonlark
+4 -1
moonlark/configuration.nix
···
# Requires at least 5.16 for working wi-fi and bluetooth.
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
-
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
+
boot = {
+
kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
+
loader.grub.device = "/dev/disk/by-uuid/5A0A-6C6E";
+
}
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.05";