mochi/nixos/profiles/hw-supermicro.nix

22 lines
378 B
Nix
Raw Normal View History

2024-07-13 03:13:00 -05:00
{ lib, pkgs, ... }:
with lib;
{
boot = {
loader = {
2024-07-13 18:00:59 -05:00
grub = {
enable = true;
zfsSupport = true;
device = "nodev";
mirroredBoots = [
{ devices = [ "nodev" ]; path = "/boot"; }
];
};
efi = {
canTouchEfiVariables = true;
};
2024-07-13 03:13:00 -05:00
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}