Move hardware config files into directory

This commit is contained in:
SebastianStork 2024-08-11 21:54:20 +02:00
parent cb3daa129c
commit fa4d802536
7 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,28 @@
{
disko.devices.disk.main = {
device = "/dev/nvme0n1";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}