Files
nixos-config/profiles/nixos/disks.nix
Christoph Schmatzler 507d6d5aff up
2025-08-11 12:00:48 +02:00

33 lines
679 B
Nix

_: {
disko.devices = {
disk = {
vdb = {
device = "/dev/%DISK%";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}