Files
nix/hosts/jupiter-vps/format.nix
Nikolaos Karaolidis 95b79ab224 Add jupiter vps
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-05-29 16:54:50 +01:00

40 lines
863 B
Nix

{
disko.devices = {
disk.main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
name = "boot";
size = "1M";
type = "EF02";
};
esp = {
name = "esp";
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
name = "root";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [ "defaults" ];
};
};
};
};
};
};
}