new machine, altostratus, my remote-work remote box.

This commit is contained in:
Gabe Venberg 2025-09-24 15:02:57 +02:00
parent 44cd697b63
commit 7ea5e9ed3c
9 changed files with 184 additions and 2 deletions

View file

@ -0,0 +1,32 @@
{
disko.devices = {
disk = {
emmc = {
device = "/dev/disk/by-id/ata-INTENSO_SSD_1832501004002497";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "512M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}