init: macmini nixos configuration.

This commit is contained in:
Sky
2026-01-27 07:44:31 +00:00
commit a4b60e72a8
13 changed files with 352 additions and 0 deletions

16
modules/system/boot.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
};
}