diff --git a/nixos/profiles/hw-supermicro.nix b/nixos/profiles/hw-supermicro.nix index 127db91..67a7ab8 100644 --- a/nixos/profiles/hw-supermicro.nix +++ b/nixos/profiles/hw-supermicro.nix @@ -1,21 +1,19 @@ { lib, pkgs, ... }: -with lib; { boot = { + # for managing/mounting nfs + supportedFilesystems = [ "nfs" ]; + loader = { - grub = { - enable = true; - zfsSupport = true; - device = "nodev"; - mirroredBoots = [ - { devices = [ "nodev" ]; path = "/boot"; } - ]; - }; + systemd-boot.enable = true; efi = { canTouchEfiVariables = true; }; }; }; + networking = { + networkmanager.enable = true; + }; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }