mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
44 lines
1.1 KiB
Nix
44 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;
|
|
};
|
|
}];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|