mochi/nixos/profiles/hw-supermicro.nix

30 lines
483 B
Nix
Raw Normal View History

2024-07-13 03:13:00 -05:00
{
2025-03-06 09:51:33 -06:00
lib,
pkgs,
...
}: {
2024-07-13 03:13:00 -05:00
boot = {
2024-07-14 05:14:13 -05:00
# for managing/mounting nfs
2025-03-06 09:51:33 -06:00
supportedFilesystems = ["nfs"];
2024-07-14 05:14:13 -05:00
2024-07-13 03:13:00 -05:00
loader = {
2024-07-14 06:03:05 -05:00
grub = {
enable = true;
efiSupport = true;
2024-07-14 06:03:05 -05:00
efiInstallAsRemovable = true;
mirroredBoots = [
2024-12-27 21:30:25 -06:00
{
2025-03-06 09:51:33 -06:00
devices = ["nodev"];
2024-12-27 21:30:25 -06:00
path = "/boot";
}
2024-07-14 06:03:05 -05:00
];
2024-07-13 18:00:59 -05:00
};
2024-07-13 03:13:00 -05:00
};
};
2024-07-14 05:14:13 -05:00
networking = {
networkmanager.enable = true;
};
2024-07-13 03:13:00 -05:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}