This commit is contained in:
2025-02-01 11:12:31 -05:00
parent 964041c860
commit ad8a012746
6 changed files with 49 additions and 4 deletions

33
disk-config.nix Normal file
View File

@@ -0,0 +1,33 @@
{
disko.devices = {
disk = {
main = {
# When using disko-install, we will overwrite this value from the commandline
device = "/dev/disk/by-id/some-disk-id";
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 = "f2fs";
mountpoint = "/";
};
};
};
};
};
};
};
}