diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-05-07 19:19:45 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-05-07 19:19:45 -0700 |
commit | ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57 (patch) | |
tree | af9d019b8bbe9bb912d73bd909c53dadd01692d8 /hosts/darkstar/hardware-configuration.nix | |
parent | b9262b04e8626dc68db2d65945bd3df4872ffd8d (diff) | |
download | nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar.gz nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar.bz2 nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar.lz nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar.xz nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.tar.zst nix-ac9bfd3fd7dbd9ca90afefd20e3c51750ef61a57.zip |
Fix ESP mounts
Diffstat (limited to '')
-rw-r--r-- | hosts/darkstar/hardware-configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/darkstar/hardware-configuration.nix b/hosts/darkstar/hardware-configuration.nix index 3acea79..49cc244 100644 --- a/hosts/darkstar/hardware-configuration.nix +++ b/hosts/darkstar/hardware-configuration.nix @@ -18,6 +18,12 @@ fsType = "zfs"; }; + fileSystems."/efiboot/efi1" = + { device = "/dev/disk/by-label/ESP1"; + fsType = "vfat"; + options = [ "X-mount.mkdir" "iocharset=iso8859-1" ]; + }; + fileSystems."/efiboot/efi2" = { device = "/dev/disk/by-label/ESP2"; fsType = "vfat"; |