test
This commit is contained in:
parent
ee00b3d80f
commit
e09d6444c3
1 changed files with 46 additions and 47 deletions
|
@ -6,8 +6,7 @@
|
||||||
content = {
|
content = {
|
||||||
type = "table";
|
type = "table";
|
||||||
format = "gpt";
|
format = "gpt";
|
||||||
partitions = [
|
partitions = [ {
|
||||||
{
|
|
||||||
name = "BOOT";
|
name = "BOOT";
|
||||||
label = "BOOT";
|
label = "BOOT";
|
||||||
start = "0%";
|
start = "0%";
|
||||||
|
@ -20,8 +19,7 @@
|
||||||
format = "vfat";
|
format = "vfat";
|
||||||
mountpoint = "/boot";
|
mountpoint = "/boot";
|
||||||
};
|
};
|
||||||
}
|
} { # partition 1
|
||||||
{
|
|
||||||
name = "ROOT";
|
name = "ROOT";
|
||||||
label = "ROOT";
|
label = "ROOT";
|
||||||
size = "100%";
|
size = "100%";
|
||||||
|
@ -37,21 +35,22 @@
|
||||||
"/root" = {
|
"/root" = {
|
||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
};
|
}; # root
|
||||||
"/home" = {
|
"/home" = {
|
||||||
mountpoint = "/home";
|
mountpoint = "/home";
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
};
|
}; # home
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
mountpoint = "/nix";
|
mountpoint = "/nix";
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
};
|
}; # nix
|
||||||
};
|
}; # subvolumes
|
||||||
};
|
}; # content.content
|
||||||
}
|
}; # content
|
||||||
];
|
} # partition 2
|
||||||
};
|
]; # partitions
|
||||||
};
|
}; # content
|
||||||
};
|
}; # sda
|
||||||
};
|
}; # disk
|
||||||
}
|
}; # disko.devices
|
||||||
|
} # root
|
Loading…
Reference in a new issue