mochi/nixos/profiles/hw-supermicro.nix

24 lines
447 B
Nix
Raw Normal View History

2024-07-13 03:13:00 -05:00
{ lib, pkgs, ... }:
{
boot = {
2024-07-14 05:14:13 -05:00
# for managing/mounting nfs
supportedFilesystems = [ "nfs" ];
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 = [
{ devices = [ "nodev" ]; path = "/boot"; }
];
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";
}