nix-config/nixos/floki/disks.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

45 lines
1.1 KiB
Nix

{ disks ? [ "/dev/nvme0n1" ], ... }:
let
defaultXfsOpts = [ "defaults" "relatime" "nodiratime" ];
in
{
disko.devices = {
disk = {
nvme0 = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "table";
format = "gpt";
partitions = [{
name = "ESP";
start = "0%";
end = "550MiB";
bootable = true;
flags = [ "esp" ];
fs-type = "fat32";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "root";
start = "550MiB";
end = "100%";
content = {
type = "filesystem";
# Overwirte the existing filesystem
extraArgs = [ "-f" ];
format = "xfs";
mountpoint = "/";
mountOptions = defaultXfsOpts;
};
}];
};
};
};
};
}