Update filesystems for omen

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2023-09-02 16:43:30 +02:00
parent 7856c2db34
commit 36120abf6b
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E
2 changed files with 12 additions and 6 deletions

View file

@ -28,12 +28,12 @@ in
fsType = "zfs";
};
"/boot" = {
device = "/dev/disk/by-uuid/078c1885-5e0c-4bb8-bec3-5bf40785f5cd";
"/boot/1" = {
device = "/dev/disk/by-uuid/14647e24-3421-4398-b30e-537de6472433";
fsType = "ext4";
};
"/boot/EFI" = {
device = "/dev/disk/by-uuid/6F1E-8B1B";
"/boot/1/EFI" = {
device = "/dev/disk/by-uuid/C58B-3BF8";
fsType = "vfat";
};

View file

@ -3,12 +3,18 @@
boot.loader = {
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/EFI";
grub = {
enable = true;
efiSupport = true;
devices = [ "nodev" ];
mirroredBoots = [
{
devices = [ "nodev" ];
path = "/boot/1";
efiSysMountPoint = "/boot/1/EFI";
}
];
};
};
}