chore: rename lisanew

This commit is contained in:
Luj 2024-08-01 20:25:37 +02:00
parent 5fde1c7a86
commit de6593bdd5
Signed by: luj
GPG key ID: 6FC74C847011FD83
6 changed files with 76 additions and 4 deletions

View file

@ -0,0 +1,36 @@
{
devices = {
disk = {
main = {
type = "disk";
device = "/dev/disk/by-id/ata-HGST_HTE721010A9E630_JR10034M34EVTK";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}