diff --git a/systems/framework.nix b/systems/framework.nix index 0502627..493960a 100644 --- a/systems/framework.nix +++ b/systems/framework.nix @@ -1,6 +1,15 @@ { config, lib, pkgs, modulesPath, ... }: { networking.hostName = "framework"; + fileSystems."/" = + { device = "/dev/disk/by-partlabel/primary"; + fsType = "ext4"; + }; + fileSystems."/boot" = + { device = "/dev/disk/by-partlabel/ESP"; + fsType = "vfat"; + }; + # CPU Settings hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;