add argiletum
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 9s
Check Nix flake / Perform Nix flake checks (pull_request) Failing after 2m17s

This commit is contained in:
2026-05-03 14:09:35 -04:00
parent 9222be4052
commit 43c026c451
6 changed files with 80 additions and 19 deletions
+46
View File
@@ -0,0 +1,46 @@
{
disko.devices = {
disk = {
# SD card — change device to /dev/sda if booting from USB instead
main = {
type = "disk";
device = "/dev/mmcblk0";
content = {
type = "table";
format = "mbr";
partitions = [
{
# Raspberry Pi firmware partition — must be vfat and first
name = "firmware";
type = "primary";
start = "1MiB";
end = "512MiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot/firmware";
mountOptions = [
"fmask=0077"
"dmask=0077"
];
};
}
{
# Root filesystem
name = "root";
type = "primary";
start = "512MiB";
end = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
}