2026-06-06 16:38:41 -04:00
|
|
|
{ lib, ... }:
|
|
|
|
|
{
|
2026-06-06 16:39:46 -04:00
|
|
|
disko.devices.disk.main = {
|
|
|
|
|
type = "disk";
|
|
|
|
|
device = "/dev/disk/by-path/platform-fe340000.mmc";
|
|
|
|
|
content = {
|
|
|
|
|
type = "gpt";
|
|
|
|
|
partitions = {
|
|
|
|
|
boot = {
|
|
|
|
|
name = "FIRMWARE";
|
|
|
|
|
size = "1G";
|
|
|
|
|
type = "EF00";
|
|
|
|
|
content = {
|
|
|
|
|
type = "filesystem";
|
|
|
|
|
format = "vfat";
|
|
|
|
|
mountpoint = "/boot/firmware";
|
|
|
|
|
mountOptions = [
|
|
|
|
|
"fmask=0022"
|
|
|
|
|
"dmask=0022"
|
|
|
|
|
];
|
2026-06-06 16:38:41 -04:00
|
|
|
};
|
2026-06-06 16:39:46 -04:00
|
|
|
};
|
|
|
|
|
root = {
|
|
|
|
|
name = "NIXOS_UCM5";
|
|
|
|
|
size = "30G";
|
|
|
|
|
content = {
|
|
|
|
|
type = "filesystem";
|
|
|
|
|
format = "ext4";
|
|
|
|
|
mountpoint = "/";
|
|
|
|
|
mountOptions = [ "noatime" ];
|
2026-06-06 16:38:41 -04:00
|
|
|
};
|
2026-06-06 16:39:46 -04:00
|
|
|
};
|
|
|
|
|
home = {
|
|
|
|
|
name = "NIXOS_HOME";
|
|
|
|
|
size = "100%";
|
|
|
|
|
content = {
|
|
|
|
|
type = "filesystem";
|
|
|
|
|
format = "ext4";
|
|
|
|
|
mountpoint = "/home";
|
|
|
|
|
mountOptions = [ "noatime" ];
|
2026-06-06 16:38:41 -04:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|