mount btrfs root volume
parent
5f9a3e1df8
commit
da08d77dc1
|
@ -16,6 +16,13 @@ in {
|
|||
};
|
||||
|
||||
fileSystems = {
|
||||
|
||||
"/mnt/btr_root" = {
|
||||
device = "/dev/mapper/root";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvolid=5" "compress=zstd" ];
|
||||
};
|
||||
|
||||
"/persist" = {
|
||||
device = "/dev/mapper/root";
|
||||
fsType = "btrfs";
|
||||
|
|
12
trantor.nix
12
trantor.nix
|
@ -20,6 +20,18 @@ in {
|
|||
fsType = "vfat";
|
||||
};
|
||||
|
||||
"/mnt/btr_system" = {
|
||||
device = "/dev/mapper/system";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvolid=5" "compress=zstd" ];
|
||||
};
|
||||
|
||||
"/mnt/btr_user" = {
|
||||
device = "/dev/mapper/user";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvolid=5" "compress=zstd" ];
|
||||
};
|
||||
|
||||
"/persist" = {
|
||||
device = "/dev/mapper/user";
|
||||
fsType = "btrfs";
|
||||
|
|
Loading…
Reference in New Issue