mochi/nixos/profiles/hw-supermicro.nix

16 lines
272 B
Nix
Raw Normal View History

2024-07-13 03:13:00 -05:00
{ lib, pkgs, ... }:
with lib;
{
boot = {
# for managing/mounting nfs
supportedFilesystems = [ "nfs" ];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}