Files
nixos/configurations/disko/vds.nix
T
2026-03-09 10:50:12 +03:00

34 lines
659 B
Nix

{
disko.devices = {
disk = {
main = {
device = "/dev/vda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
type = "EF02";
size = "1M";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
swap = {
size = "1G";
content = {
type = "swap";
};
};
};
};
};
};
};
}