Fix mounts
This commit is contained in:
parent
f6706c9aa5
commit
e967841fe4
1 changed files with 16 additions and 16 deletions
|
@ -24,7 +24,7 @@
|
||||||
boot.loader.grub.mirroredBoots = [
|
boot.loader.grub.mirroredBoots = [
|
||||||
{
|
{
|
||||||
devices = [ "/dev/disk/by-uuid/4B4A-B1B4" ];
|
devices = [ "/dev/disk/by-uuid/4B4A-B1B4" ];
|
||||||
path = "/boot1";
|
path = "/boot";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
devices = [ "/dev/disk/by-uuid/4B2C-385A" ];
|
devices = [ "/dev/disk/by-uuid/4B2C-385A" ];
|
||||||
|
@ -39,27 +39,27 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
# "/boot" =
|
"/boot" =
|
||||||
# {
|
|
||||||
# device = "/dev/disk/by-uuid/4B4A-B1B4";
|
|
||||||
# fsType = "vfat";
|
|
||||||
# };
|
|
||||||
#
|
|
||||||
# "/boot2" =
|
|
||||||
# {
|
|
||||||
# device = "/dev/disk/by-uuid/4B2C-385A";
|
|
||||||
# fsType = "vfat";
|
|
||||||
# };
|
|
||||||
|
|
||||||
"/home/hensoko/data" =
|
|
||||||
{
|
{
|
||||||
device = "/dev/disk/by-uuid/c307a14c-6e6e-478b-a0e5-4dbd8bdccf32";
|
device = "/dev/disk/by-uuid/4B4A-B1B4";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
"/boot2" =
|
||||||
|
{
|
||||||
|
device = "/dev/disk/by-uuid/4B2C-385A";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
"/home" =
|
||||||
|
{
|
||||||
|
device = "/dev/mapper/vg0-home";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[{ device = "/dev/disk/by-uuid/51348108-5c29-4251-a087-5a7de2eb97b5"; }];
|
[{ device = "/dev/mapper/vg0-swap"; }];
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue