push thinkcenter disk config

This commit is contained in:
TheWanderingCrow 2025-01-15 11:41:35 -05:00
parent bfb551d905
commit 900a38cb36
6 changed files with 50 additions and 17 deletions

View file

@ -0,0 +1,33 @@
{
disko.devices = {
disk = {
disk0 = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
label = "boot";
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = ["umask=0077"];
};
};
root = {
size = "100%";
content = {
type = "zfs";
pool = "zpool";
};
};
};
};
};
};
};
}