slab: separate XBOOTLDR partition
This commit is contained in:
parent
f325a1ec51
commit
08c9e0d17a
@ -88,7 +88,7 @@
|
|||||||
boot.loader = {
|
boot.loader = {
|
||||||
efi = {
|
efi = {
|
||||||
canTouchEfiVariables = true;
|
canTouchEfiVariables = true;
|
||||||
efiSysMountPoint = "/boot";
|
efiSysMountPoint = "/efi";
|
||||||
};
|
};
|
||||||
# grub = {
|
# grub = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
@ -97,10 +97,9 @@
|
|||||||
# };
|
# };
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
xbootldrMountPoint = "/boot";
|
||||||
netbootxyz.enable = true;
|
netbootxyz.enable = true;
|
||||||
memtest86.enable = true;
|
memtest86.enable = true;
|
||||||
# grr oem efi partitions
|
|
||||||
configurationLimit = 4;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,22 +19,12 @@
|
|||||||
options = [ "subvol=nixos/@root" ];
|
options = [ "subvol=nixos/@root" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# fileSystems."/boot" =
|
|
||||||
# { device = "/dev/disk/by-uuid/b9813c1d-5b6c-4026-9ee3-53ba80b90dc4";
|
|
||||||
# fsType = "ext4";
|
|
||||||
# };
|
|
||||||
|
|
||||||
fileSystems."/nix" =
|
fileSystems."/nix" =
|
||||||
{ device = "/dev/disk/by-uuid/5723dafa-81df-4bb4-a039-7f52b61cbb02";
|
{ device = "/dev/disk/by-uuid/5723dafa-81df-4bb4-a039-7f52b61cbb02";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nixos/@nix" ];
|
options = [ "subvol=nixos/@nix" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
|
||||||
{ device = "/dev/disk/by-uuid/4E1B-8BEE";
|
|
||||||
fsType = "vfat";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/.btrfsroot" =
|
fileSystems."/.btrfsroot" =
|
||||||
{ device = "/dev/disk/by-uuid/5723dafa-81df-4bb4-a039-7f52b61cbb02";
|
{ device = "/dev/disk/by-uuid/5723dafa-81df-4bb4-a039-7f52b61cbb02";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
@ -47,6 +37,18 @@
|
|||||||
options = [ "subvol=@home" ];
|
options = [ "subvol=@home" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" =
|
||||||
|
{ device = "/dev/disk/by-uuid/50D3-45F0";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/efi" =
|
||||||
|
{ device = "/dev/disk/by-uuid/4E1B-8BEE";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/9360890a-4050-4326-bf5f-8fa2bdc6744a"; }
|
[ { device = "/dev/disk/by-uuid/9360890a-4050-4326-bf5f-8fa2bdc6744a"; }
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user