From 5d3d3709daabfbe047a9762f44b0a8acdeb24a79 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Wed, 10 Jul 2024 15:12:00 -0500 Subject: [PATCH] systemd-boot --- nixos/profiles/hw-framework-16-7840hs.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/nixos/profiles/hw-framework-16-7840hs.nix b/nixos/profiles/hw-framework-16-7840hs.nix index d2e4dd7..b8c3ed8 100644 --- a/nixos/profiles/hw-framework-16-7840hs.nix +++ b/nixos/profiles/hw-framework-16-7840hs.nix @@ -10,23 +10,16 @@ supportedFilesystems = [ "nfs" ]; loader = { - grub = { - enable = true; - zfsSupport = true; - device = "nodev"; - mirroredBoots = [ - { devices = ["nodev"]; path = "/boot";} - ]; + systemd-boot.enable = true; + efi = { + canTouchEfiVariables = true; }; - # efi = { - # canTouchEfiVariables = true; - # }; }; }; networking = { useDHCP = lib.mkDefault true; + networkmanager.enable = true; }; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }