Newer
Older
skyworks-Nix-infra / hosts / xlab-gateway / disko.nix
# Disko: System disk partitioning for xlab-gateway
# Intel Optane MEMPEK1J016GAD 13.4GB NVMe
{ ... }:

{
  disko.devices = {
    disk.system = {
      device = "/dev/disk/by-id/nvme-INTEL_MEMPEK1J016GAD_BTBT83661K20016N";
      type = "disk";
      content = {
        type = "gpt";
        partitions = {
          esp = {
            size = "512M";
            type = "EF00";
            content = {
              type = "filesystem";
              format = "vfat";
              mountpoint = "/boot";
              mountOptions = [ "defaults" "umask=0077" ];
            };
          };
          swap = {
            size = "1G";
            content = {
              type = "swap";
              randomEncryption = true;
            };
          };
          root = {
            size = "100%";
            content = {
              type = "filesystem";
              format = "ext4";
              mountpoint = "/";
              mountOptions = [ "defaults" "noatime" ];
            };
          };
        };
      };
    };
  };
}