diff --git a/system/configuration.nix b/system/configuration.nix index 957fd50..5de29c9 100755 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -15,6 +15,7 @@ # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.loader.efi.efiSysMountPoint = "/boot"; # Set your time zone. time.timeZone = "America/Denver"; diff --git a/system/hardware-configuration.nix b/system/hardware-configuration.nix index a3dc2fd..b2fd4b4 100755 --- a/system/hardware-configuration.nix +++ b/system/hardware-configuration.nix @@ -19,7 +19,7 @@ }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/3438-182C"; + { device = "/dev/disk/by-uuid/F253-5DFF"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; };